|
|
|
SftBoxDropDown.Dropped Property |
Defines whether the drop down portion is shown/hidden.
Syntax
VB.NET |
Boolean = object.Dropped As Boolean |
||
VB |
Boolean = object.Dropped As Boolean |
||
C#.NET |
bool Boolean = object.Dropped; |
||
VC++ |
VARIANT_BOOL Boolean = object->Dropped;
|
||
C |
HRESULT object->get_Dropped(VARIANT_BOOL* Boolean); |
||
Delphi |
Boolean := object.Dropped : WordBool; |
||
VB.NET |
object.Dropped = Boolean As Boolean |
||
VB |
object.Dropped = Boolean As Boolean |
||
C#.NET |
bool object.Dropped = Boolean; |
||
VC++ |
VARIANT_BOOL object->Dropped = Boolean;
|
||
C |
HRESULT object->put_Dropped(VARIANT_BOOL Boolean); |
||
Delphi |
object.Dropped := Boolean : WordBool; |
object
A SftBoxDropDown object.
Boolean
Defines whether the drop down portion is shown/hidden.
Boolean |
Description |
True |
The drop down portion is shown. |
False |
The drop down portion is hidden. |
Comments
The Dropped property defines whether the drop down portion is shown/hidden.
The drop down portion can only be visible when the control has the input focus. Setting the Dropped property when the control does not have the input focus will set the input focus to the control and display the drop down portion.
The DropDown.RollUp method can also be used to hide the drop down portion.
This property cannot be used with a simple combo box.