SMART datagrid v.1 > Classes > HeaderSummary

Back  Forward

DataLudi.HeaderSummary.minHeight  property

The minimum height of summary 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 19.

Getter
function minHeight(): Integer
Setter
function setMinHeight(value: Integer)
Code -1
    grid.header().setSummary({
        minHeight: 30
    });
    // Or, by each property
    grid.header().summary().setMinHeight(30);
See Also
height
resizable
GridHeader
GridBase.setOptions
Examples
Grid Header Summary
Column Header