|
|
|
SftBox.ExtendedUI Property |
Defines whether the extended user-interface is available.
Syntax
VB.NET |
Boolean = object.ExtendedUI As Boolean |
||
VB |
Boolean = object.ExtendedUI As Boolean |
||
C#.NET |
bool Boolean = object.ExtendedUI; |
||
VC++ |
VARIANT_BOOL Boolean = object->ExtendedUI;
|
||
C |
HRESULT object->get_ExtendedUI(VARIANT_BOOL* Boolean); |
||
Delphi |
Boolean := object.ExtendedUI : WordBool; |
||
VB.NET |
object.ExtendedUI = Boolean As Boolean |
||
VB |
object.ExtendedUI = Boolean As Boolean |
||
C#.NET |
bool object.ExtendedUI = Boolean; |
||
VC++ |
VARIANT_BOOL object->ExtendedUI = Boolean;
|
||
C |
HRESULT object->put_ExtendedUI(VARIANT_BOOL Boolean); |
||
Delphi |
object.ExtendedUI := Boolean : WordBool; |
object
A SftBox object.
Boolean
Defines whether the extended user-interface is available.
Boolean |
Description |
True |
The down arrow key displays the drop down portion. |
False |
The F4 key displays the drop down portion. |
Comments
The ExtendedUI property defines whether the extended user-interface is available.
The ExtendedUI property only applies to a drop down or drop down list combo box.
The drop down portion can also be made visible by clicking on the drop down button. This is not affected by this property.
If the control is empty (i.e., has no items), the drop down portion cannot be made visible and the drop down button is disabled.