|
|
|
SftButton.DropDownPressed Property |
Defines whether the drop down button is pressed (toggle button only).
Syntax
VB.NET |
Boolean = object.DropDownPressed As Boolean |
||
VB |
Boolean = object.DropDownPressed As Boolean |
||
C#.NET |
bool Boolean = object.DropDownPressed; |
||
VC++ |
VARIANT_BOOL Boolean = object->DropDownPressed;
|
||
C |
HRESULT object->get_DropDownPressed(VARIANT_BOOL* Boolean); |
||
Delphi |
Boolean := object.DropDownPressed : WordBool; |
||
VB.NET |
object.DropDownPressed = Boolean As Boolean |
||
VB |
object.DropDownPressed = Boolean As Boolean |
||
C#.NET |
bool object.DropDownPressed = Boolean; |
||
VC++ |
VARIANT_BOOL object->DropDownPressed = Boolean;
|
||
C |
HRESULT object->put_DropDownPressed(VARIANT_BOOL Boolean); |
||
Delphi |
object.DropDownPressed := Boolean : WordBool; |
object
A SftButton object.
Boolean
Defines whether the drop down button is pressed (toggle button only).
Boolean |
Description |
True |
The drop down button is pressed. |
False |
The drop down button is released. |
Comments
The DropDownPressed property defines whether the drop down button is pressed (toggle button only).
When using the DropDownPressed property, the DropDownClick event does not occur.
The DropDownToggle property must be set to True for this property to take effect.
The button portion is controlled by the equivalent Pressed property.