SMART datagrid v.1 > Classes > RowIndicator

Back  Forward

DataLudi.RowIndicator.minWidth  property

The minimum width of Row indicator. 

It specifies the minimum width which is taken up by Row indicator in grid in pixels. Regardless of width setting or the value calculated automatically, it will always display the width greater than this value. If specify less than 0, there will be no minimum limit. 

Defaults to 0.

Getter
function minWidth(): Integer
Setter
function setMinWidth(value: Integer)
Code -1
    grid.setRowIndicator({
        minWidth: 40
    });
Code -2
    grid.rowIndicator().setMinWidth(80);
See Also
width
maxWidth
Examples
Row Indicator