|
|
|
SftBoxItems.LastShown Property |
Returns the index of the last visible item in the combo box control.
Syntax
VB.NET |
ItemIndex = object.LastShown As Integer |
||
VB |
ItemIndex = object.LastShown As Long |
||
C#.NET |
int ItemIndex = object.LastShown; |
||
VC++ |
long ItemIndex = object->LastShown;
|
||
C |
HRESULT object->get_LastShown(long* ItemIndex); |
||
Delphi |
ItemIndex := object.LastShown : Integer; |
object
A SftBoxItems object.
ItemIndex
Returns the index of the last visible item in the combo box control. -1 is returned, if no item is found.
Comments
The LastShown property returns the index of the last visible item in the combo box control.
Use Items.FirstShown, Item.NextShown, Item.PrevShown to retrieve information about item visibility.