|
|
|
SftBoxItems.Top Property |
Defines the first item displayed in the drop down portion.
Syntax
VB.NET |
ItemIndex = object.Top As Integer |
||
VB |
ItemIndex = object.Top As Long |
||
C#.NET |
int ItemIndex = object.Top; |
||
VC++ |
long ItemIndex = object->Top;
|
||
C |
HRESULT object->get_Top(long* ItemIndex); |
||
Delphi |
ItemIndex := object.Top : Integer; |
||
VB.NET |
object.Top = ItemIndex As Integer |
||
VB |
object.Top = ItemIndex As Long |
||
C#.NET |
int object.Top = ItemIndex; |
||
VC++ |
long object->Top = ItemIndex;
|
||
C |
HRESULT object->put_Top(long ItemIndex); |
||
Delphi |
object.Top := ItemIndex : Integer; |
object
A SftBoxItems object.
ItemIndex
Defines the first item displayed in the drop down portion.
Comments
The Top property defines the first item displayed in the drop down portion.
The Item.MakeVisible method can be used to insure that an item is displayed and visible in the drop down portion.
The Top property can used to make an item specified by ItemIndex the very first item shown in the drop down portion.