SMART datagrid v.1 > Classes > ScrollBar

Back  Forward

DataLudi.ScrollBar.barWidth  property

The width of scroll bar of pixel unit. 

The minimum value is 8 pixel. 

Defaults to 16.

Getter
function barWidth(): Integer
Setter
function setBarWidth(value: Integer)
Code -1
    // Narrow the width of scroll bar.
    grid.vscrollBar().setBarWidth(12);
    
    // or
    grid.setOptions({
        vscrollBar: {
            barWidth: 12
        },
        hscrollBar: {
            barWidth: 14
        }
    });
See Also
buttonLocation
barIndent
minThumbSize
GridBase.hscrollBar
GridBase.vscrollBar
Examples
Scroll Bar Example