|
|
|
SftBoxItems.Selection Property |
Defines the currently selected item.
Syntax
VB.NET |
ItemIndex = object.Selection As Integer |
||
VB |
ItemIndex = object.Selection As Long |
||
C#.NET |
int ItemIndex = object.Selection; |
||
VC++ |
long ItemIndex = object->Selection;
|
||
C |
HRESULT object->get_Selection(long* ItemIndex); |
||
Delphi |
ItemIndex := object.Selection : Integer; |
||
VB.NET |
object.Selection = ItemIndex As Integer |
||
VB |
object.Selection = ItemIndex As Long |
||
C#.NET |
int object.Selection = ItemIndex; |
||
VC++ |
long object->Selection = ItemIndex;
|
||
C |
HRESULT object->put_Selection(long ItemIndex); |
||
Delphi |
object.Selection := ItemIndex : Integer; |
object
A SftBoxItems object.
ItemIndex
The zero-based index of the selected item. If no item is selected this value is -1.
Comments
The Selection property defines the currently selected item.
The SelectionChange event notifies an application when the selection is changed.