SMART datagrid v.1 > Classes > ScrollBar

Back  Forward

DataLudi.ScrollBar.indentStyles  property

Style Set which is used when drawing start prior area of scroll bar. 

Getter
function indentStyles(): Object|GridStyles
Setter
function setIndentStyles(value: GridStyles)
Code -1
    grid.vscrollBar().setIndentStyles({
        background: "#ccc"
    });
    
    // or, apply to both scroll bars in loadStyles.
    grid.loadStyles({
        scrollBar: {
            indent: {
                background: "#ccc"
            }
        }
    });
See Also
barIndent
buttonStyles
thumbStyles
GridBase.hscrollBar
GridBase.vscrollBar
Examples
Scroll Bar Example