SMART datagrid v.1 > Classes > GridBase
DataLudi.GridBase.vscrollBar property
Vertical scroll bar setting object.
Horizontal scroll bar setting is specified by hscrollBar property.
- Getter
- function vscrollBar(): Object|ScrollBar
- Setter
- function setVscrollBar(value: ScrollBar)
- Note
- When creating the grid, vertical Scroll Bar object will be created within the grid.
- If specify the value through this property, a new object will not be created and will change the properties of existing object.
Code -1
grid.setVscrollBar({
barWidth: 12,
buttonLocation: 'far'
});
- See Also
- hscrollBar
- ScrollBar
- Examples
- Scroll Bar Example