|
|
|
SftBoxDropDown.DropOnInput Property |
Defines whether the drop down portion is shown when the user types characters.
Syntax
VB.NET |
Boolean = object.DropOnInput As Boolean |
||
VB |
Boolean = object.DropOnInput As Boolean |
||
C#.NET |
bool Boolean = object.DropOnInput; |
||
VC++ |
VARIANT_BOOL Boolean = object->DropOnInput;
|
||
C |
HRESULT object->get_DropOnInput(VARIANT_BOOL* Boolean); |
||
Delphi |
Boolean := object.DropOnInput : WordBool; |
||
VB.NET |
object.DropOnInput = Boolean As Boolean |
||
VB |
object.DropOnInput = Boolean As Boolean |
||
C#.NET |
bool object.DropOnInput = Boolean; |
||
VC++ |
VARIANT_BOOL object->DropOnInput = Boolean;
|
||
C |
HRESULT object->put_DropOnInput(VARIANT_BOOL Boolean); |
||
Delphi |
object.DropOnInput := Boolean : WordBool; |
object
A SftBoxDropDown object.
Boolean
Defines whether the drop down portion is shown when the user types characters.
Boolean |
Description |
True |
The drop down portion automatically becomes visible when the control has the input focus and the user types characters. |
False |
The drop down portion does not change when the user types characters. |
Comments
The DropOnInput property defines whether the drop down portion is shown when the user types characters.
The DropDown.Dropped property can be used to display and hide the drop down portion.
This property has no effect on a simple combo box.