SMART datagrid v.1 > Classes > GridFooter

Back  Forward

DataLudi.GridFooter.minHeight  property

Specify the minimum height of grid footer in pixels. In any case, it will display the height greater than this value. 

If want to explicitly specify the height of footer, you can specify height value greater than this value. 

Defaults to 23.

Getter
function minHeight(): Integer
Setter
function setMinHeight(value: Integer)
Code -1
    grid.setFooter({
        minHeight: 30
    });
    // or, by property
    grid.footer().setMinHeight(30);
See Also
height
resizable
ColumnFooter
Examples
Column Footer