|
|
|
SftTree.MakeRowVisible Method |
Vertically scrolls the specified item into view so it is displayed in the tree control's client area.
Deprecated - Provided for compatibility with earlier versions only - Use Item.MakeVisible instead
Syntax
VB.NET |
object.MakeRowVisible(ByVal ItemIndex As Integer) |
||
VB |
object.MakeRowVisible(ByVal ItemIndex As Long) |
||
C#.NET |
void object.MakeRowVisible(int ItemIndex); |
||
VC++ |
HRESULT object->MakeRowVisible(long ItemIndex); |
||
C |
HRESULT object->raw_MakeRowVisible(long ItemIndex); |
||
Delphi |
procedure object.MakeRowVisible(ItemIndex : Integer); |
object
A SftTree object.
ItemIndex
The zero-based index of the item to be scrolled into view.
Comments
Deprecated - Provided for compatibility with earlier versions only - Use Item.MakeVisible instead
The MakeRowVisible method vertically scrolls the specified item into view so it is displayed in the tree control's client area.
The MakeRowVisible method can be used to make an item visible by scrolling it into view (vertically). The user normally scrolls the tree control items vertically using the scroll bar, but if an application wants to insure that an item is visible, this method can be used.
The Items.TopIndex property is used to make a specific item the very first item shown in the tree control area.
To make a particular cell visible, the Cell.MakeVisible method can be used.
See Also SftTree Object | Object Hierarchy