|
|
|
SftTree.Scrollbars Property |
Defines the presence of horizontal and vertical scroll bars.
Syntax
VB.NET |
Style = object.Scrollbars As SftTreeScrollbarsConstants |
||
VB |
Style = object.Scrollbars As SftTreeScrollbarsConstants |
||
C#.NET |
SftTreeScrollbarsConstants Style = object.Scrollbars; |
||
VC++ |
enum SftTreeScrollbarsConstants Style = object->Scrollbars;
|
||
C |
HRESULT object->get_Scrollbars(enum SftTreeScrollbarsConstants* Style); |
||
Delphi |
Style := object.Scrollbars : TOleEnum; |
||
VB.NET |
object.Scrollbars = Style As SftTreeScrollbarsConstants |
||
VB |
object.Scrollbars = Style As SftTreeScrollbarsConstants |
||
C#.NET |
SftTreeScrollbarsConstants object.Scrollbars = Style; |
||
VC++ |
enum SftTreeScrollbarsConstants object->Scrollbars = Style;
|
||
C |
HRESULT object->put_Scrollbars(enum SftTreeScrollbarsConstants Style); |
||
Delphi |
object.Scrollbars := Style : TOleEnum; |
object
A SftTree object.
Style
Defines the presence of horizontal and vertical scroll bars.
Style |
Value |
Description |
0 |
No scroll bars are shown. |
|
1 |
A horizontal scroll bar is shown if horizontal scrolling is possible, because the horizontal extent is wider than the display area of the tree control, otherwise the horizontal scroll bar is not shown. For more information, see the Items.HorizontalExtent property. |
|
2 |
A vertical scroll bar is shown if vertical scrolling is possible, because more items are visible than fit into the display area of the tree control, otherwise the vertical scroll bar is not shown. |
|
3 |
The horizontal and vertical scroll bars are shown if needed. See scrollSftTreeHorz and scrollSftTreeVert. |
|
4 |
The horizontal scroll bar is always shown. The scroll bar is enabled if horizontal scrolling is possible, because the horizontal extent is wider than the display area of the tree control, otherwise the horizontal scroll bar is disabled. For more information, see the Items.HorizontalExtent property. |
|
5 |
The vertical scroll bar is always shown. The scroll bar is enabled if more items are visible than fit into the display area of the tree control, otherwise the vertical scroll bar is disabled. |
|
6 |
The scroll bars are always shown. The scroll bars may be enabled and disabled as described with scrollSftTreeHorzDis and scrollSftTreeVertDis. |
Comments
The Scrollbars property defines the presence of horizontal and vertical scroll bars.
Horizontal scrolling is also dependent on the settings of the Items.HorizontalExtent property or the use of the Items.RecalcHorizontalExtent method.
The visual appearance of the scroll bars can be defined using the ScrollbarStyle property.
This property is read/only at run-time.
See Also SftTree Object | Object Hierarchy