SMART datagrid v.1 > Classes > GridBase
DataLudi.GridBase.hscrollBar property
Horizontal scroll bar setting object.
Vertical scroll bar setting is specified by vscrollBar property.
- Getter
- function hscrollBar(): Object|ScrollBar
- Setter
- function setHscrollBar(value: ScrollBar)
- Note
- When creating the grid, horizontal 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.setHscrollBar({
barWidth: 12,
buttonLocation: 'far'
});
- See Also
- vscrollBar
- ScrollBar
- Examples
- Scroll Bar Example