SMART datagrid v1.4 > Classes > DisplayOptions

Back  Forward

DataLudi.DisplayOptions.minRowHeight  property

사용자가 마우스 드래깅으로 행 높이를 수정하거나, 그리드가 자동 행 높이를 계산할 때 최소 행 높이값. 

픽셀 단위로 지정한다. 최대 높이는 maxRowHeight로 지정할 수 있다. 

기본값은 4.

Getter
function minRowHeight(): Integer
Setter
function setMinRowHeight(value: Integer)
Code -1
    grid.setOptions({
        display: {
            maxRowHeight: 10,
            minRowHeight: 10
        }
    });
Code -2
    grid.setDisplayOptions({
        maxRowHeight: 10,
        minRowHeight: 10
    });
Code -3
    grid.displayOptions().setMinRowHeight(10);
See Also
maxRowHeight
rowHeight
rowResizable
Examples
Row Heights