TdxTreeViewControlOptionsView.ScrollBars Property
In This Article
Specifies which scrollbars the Tree View control can display.
#Declaration
Delphi
property ScrollBars; default ssBoth;
#Property Value
Type | Default | Description |
---|---|---|
Tcx |
ss |
A set of scrollbars. |
#Remarks
Options include:
Value | Description |
---|---|
ss |
The control can display the horizontal and vertical scrollbars. |
ss |
The control can display only the horizontal scrollbar. |
ss |
The control can display only the vertical scrollbar. |
ss |
The control displays no scrollbars. |
Note
The Tree View shows scrollbars if all tree nodes do not fit in the control.
You can call the control’s Make
A user can press the Up and Down arrow buttons to move focus to a node outside the control’s client area. These actions scroll the control vertically, even if the Scroll
See Also