|
|
|
SftTreeItems.TopIndex Property |
Defines the index of the first item displayed in the tree control's client area.
Syntax
VB.NET |
ItemIndex = object.TopIndex As Integer |
||
VB |
ItemIndex = object.TopIndex As Long |
||
C#.NET |
int ItemIndex = object.TopIndex; |
||
VC++ |
long ItemIndex = object->TopIndex;
|
||
C |
HRESULT object->get_TopIndex(long* ItemIndex); |
||
Delphi |
ItemIndex := object.TopIndex : Integer; |
||
VB.NET |
object.TopIndex = ItemIndex As Integer |
||
VB |
object.TopIndex = ItemIndex As Long |
||
C#.NET |
int object.TopIndex = ItemIndex; |
||
VC++ |
long object->TopIndex = ItemIndex;
|
||
C |
HRESULT object->put_TopIndex(long ItemIndex); |
||
Delphi |
object.TopIndex := ItemIndex : Integer; |
object
A SftTreeItems object.
ItemIndex
Defines the index of the first item displayed in the tree control's client area.
Comments
The TopIndex property defines the index of the first item displayed in the tree control's client area.
The Item.MakeVisible method can be used to insure that an item is displayed anywhere in the tree control area. The TopIndex property is used to make the item specified the very first item shown in the tree control area.
See Also SftTreeItems Object | Object Hierarchy