SMART datagrid v.1 > Classes > GridHeader

Back  Forward

DataLudi.GridHeader.height  property

The height of grid header in pixels. 

If specify this value as greater than 0, the height will be determined by a greater one among minHeight and this value. 

If it is 0, the height will be calculated and set internally based on Style

Defaults to 0.

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