|
|
|
SftBoxItem.NextSibling Property |
Returns the item's next sibling item.
Syntax
VB.NET |
ItemIndex = object.NextSibling As Integer |
||
VB |
ItemIndex = object.NextSibling As Long |
||
C#.NET |
int ItemIndex = object.NextSibling; |
||
VC++ |
long ItemIndex = object->NextSibling;
|
||
C |
HRESULT object->get_NextSibling(long* ItemIndex); |
||
Delphi |
ItemIndex := object.NextSibling : Integer; |
object
A SftBoxItem object.
ItemIndex
Returns the zero-based index of the next sibling item of the item described by object. If the item doesn't have a next sibling item, -1 is returned.
Comments
The NextSibling property returns the item's next sibling item.
Also see Item.FirstSibling, Item.PrevSibling, Item.LastSibling.