|
|
|
SftTreeRowColumnFooter.ButtonDown Property |
Defines whether the row/column footer button is currently pressed.
Syntax
VB.NET |
Boolean = object.ButtonDown As Boolean |
||
VB |
Boolean = object.ButtonDown As Boolean |
||
C#.NET |
bool Boolean = object.ButtonDown; |
||
VC++ |
VARIANT_BOOL Boolean = object->ButtonDown;
|
||
C |
HRESULT object->get_ButtonDown(VARIANT_BOOL* Boolean); |
||
Delphi |
Boolean := object.ButtonDown : WordBool; |
||
VB.NET |
object.ButtonDown = Boolean As Boolean |
||
VB |
object.ButtonDown = Boolean As Boolean |
||
C#.NET |
bool object.ButtonDown = Boolean; |
||
VC++ |
VARIANT_BOOL object->ButtonDown = Boolean;
|
||
C |
HRESULT object->put_ButtonDown(VARIANT_BOOL Boolean); |
||
Delphi |
object.ButtonDown := Boolean : WordBool; |
object
A SftTreeRowColumnFooter object.
Boolean
Defines whether the row/column footer button is currently pressed.
Boolean |
Description |
True |
The row/column footer button is pressed. |
False |
The row/column footer button is not pressed. |
Comments
The ButtonDown property defines whether the row/column footer button is currently pressed.
The row/column footer is only available if both row headers (see RowHeaders.Appearance property) and column footers (see Footers.Appearance property) are shown.
The ItemClick event is generated when the user clicks on the row/column footer button. The RowColumnFooter.RemainUp property can be used to define the button to automatically return to its "up" position after being pressed.
The row/column footer is drawn as a button if the RowColumnFooter.Appearance property is set accordingly.
See Also SftTreeRowColumnFooter Object | Object Hierarchy