SMART datagrid v.1 > Classes > ScrollBar

Back  Forward

DataLudi.ScrollBar.minThumbSize  property

The minimum size of scroll bar track button of pixel unit. 

Defaults to 20.

Getter
function minThumbSize(): Integer
Setter
function setMinThumbSize(value: Integer)
Code -1
    grid.vscrollBar().setMinThumbSize(30);
    
    // or
    grid.setOptions({
        vscrollBar: {
            thumbSize: 30
        },
        hscrollBar: {
            thumbWidth: 30
        }
    });
See Also
barWidth
GridBase.hscrollBar
GridBase.vscrollBar
Examples
Scroll Bar Example