SMART datagrid v1.4 > Classes > RowIndicator

Back  Forward

DataLudi.RowIndicator.width  property

Row indicator의 너비. 

Row indicator가 그리드에서 차지하는 너비를 픽셀 단위로 지정한다. 이 값을 0 이하의 값으로 지정하면 stylesfont를 기준으로 최대 표시 수자의 길이를 계산해서 너비가 자동 계산된다. 

어떤 경우든 minWidthmaxWidth 사이의 값으로 표시된다. 0 이하로 지정하면 이 값은 무시된다. 

기본값은 0.

Getter
function width(): Integer
Setter
function setWidth(value: Integer)
Code -1
    grid.setOptions({
        rowIndicator: {
            width: 50
        }
    });
Code -2
    grid.rowIndicator().setWidth(50);    
See Also
minWidth
maxWidth
GridStyles
Examples
Row Indicator