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