|
|
|
SftTree.SelectionGroupStart Method |
Returns the index of the first selected item in a group of selected items.
Deprecated - Provided for compatibility with earlier versions only - Use Items.SelectionGroupStart instead
Syntax
VB.NET |
ItemIndex = object.SelectionGroupStart(ByVal GroupIndex As Integer) As Integer |
||
VB |
ItemIndex = object.SelectionGroupStart(ByVal GroupIndex As Long) As Long |
||
C#.NET |
int ItemIndex = object.SelectionGroupStart(int GroupIndex); |
||
VC++ |
long ItemIndex = object->SelectionGroupStart(long GroupIndex); |
||
C |
HRESULT object->raw_SelectionGroupStart(long GroupIndex, long* ItemIndex); |
||
Delphi |
ItemIndex := object.SelectionGroupStart(GroupIndex : Integer) : Integer; |
object
A SftTree object.
GroupIndex
The zero-based group number for which the first selected item is to be retrieved.
ItemIndex
Returns the index of the first selected item in a group of selected items.
Comments
Deprecated - Provided for compatibility with earlier versions only - Use Items.SelectionGroupStart instead
The SelectionGroupStart method returns the index of the first selected item in a group of selected items.
In a multiple selection tree control, many discontiguous groups of items may be selected. While the Items.Selection property returns an index for each selected item, the Items.SelectionGroupStart and Items.SelectionGroupEnd properties return each group of selected items. For a large number of selected items this is the preferred method.
The Items.SelectionGroups property returns the number of groups of selected items.
See Also SftTree Object | Object Hierarchy