SMART datagrid v1.4 > Classes > ScrollBar

Back  Forward

DataLudi.ScrollBar.barWidth  property

픽셀 단위의 스크롤바 폭. 

최소값은 8 픽셀이다. 

기본값은 16.

Getter
function barWidth(): Integer
Setter
function setBarWidth(value: Integer)
Code -1
    // 스크롤바 폭을 좁게 한다.
    grid.vscrollBar().setBarWidth(12);
    
    // 혹은
    grid.setOptions({
        vscrollBar: {
            barWidth: 12
        },
        hscrollBar: {
            barWidth: 14
        }
    });
See Also
buttonLocation
barIndent
minThumbSize
GridBase.hscrollBar
GridBase.vscrollBar
Examples
스크롤바 예제