SMART datagrid v.1 > Classes > GridHeader

Back  Forward

DataLudi.GridHeader.minHeight  property

The minimum height of grid header in pixels. 

In any case, it will be displayed with the height more than this value. If want to explicitly specify the height of header, you can specify height value as more than this value. 

Defaults to 23.

Getter
function minHeight(): Integer
Setter
function setMinHeight(value: Integer)
Code -1
    grid.setHeader({
        minHeight: 30
    });
    // Or, by each property
    grid.header().setMinHeight(30);
See Also
height
resizable
Examples
Column Headers