| 
 | 
 | 
 | 
| SftTreeItem.NextShown Property | 
Returns the index of the next visible item.
Syntax
| VB.NET | ItemIndex = object.NextShown As Integer | ||
| VB | ItemIndex = object.NextShown As Long | ||
| C#.NET | int ItemIndex = object.NextShown; | ||
| VC++ | 
long ItemIndex = object->NextShown;
 | ||
| C | HRESULT object->get_NextShown(long* ItemIndex); | ||
| Delphi | ItemIndex := object.NextShown : Integer; | ||
object
A SftTreeItem object.
ItemIndex
Returns the index of the next visible item. -1 is returned, if no item is found.
Comments
The NextShown property returns the index of the next visible item.
Dependent items of a collapsed parent item are skipped using this method.
Use Items.FirstShown, Item.PrevShown, Items.LastShown to retrieve information about item visibility.
See Also SftTreeItem Object | Object Hierarchy