|
|
|
SftButton.DropDownFollows Property |
Defines whether the drop down button follows button clicks.
Syntax
VB.NET |
Boolean = object.DropDownFollows As Boolean |
||
VB |
Boolean = object.DropDownFollows As Boolean |
||
C#.NET |
bool Boolean = object.DropDownFollows; |
||
VC++ |
VARIANT_BOOL Boolean = object->DropDownFollows;
|
||
C |
HRESULT object->get_DropDownFollows(VARIANT_BOOL* Boolean); |
||
Delphi |
Boolean := object.DropDownFollows : WordBool; |
||
VB.NET |
object.DropDownFollows = Boolean As Boolean |
||
VB |
object.DropDownFollows = Boolean As Boolean |
||
C#.NET |
bool object.DropDownFollows = Boolean; |
||
VC++ |
VARIANT_BOOL object->DropDownFollows = Boolean;
|
||
C |
HRESULT object->put_DropDownFollows(VARIANT_BOOL Boolean); |
||
Delphi |
object.DropDownFollows := Boolean : WordBool; |
object
A SftButton object.
Boolean
Defines whether the drop down button follows button clicks.
Boolean |
Description |
True |
If the button is pressed or released, the drop down button is also displayed in the same position. |
False |
If the button is pressed or released, this has no effect on the drop down button. |
Comments
The DropDownFollows property defines whether the drop down button follows button clicks.
The button and drop down button portion are usually independent, but using the DropDownFollows or Follows properties, one can mimic the state of the other.