|
|
|
SftTree.RowColButtonDown Property |
Defines whether the row/column button is currently down (pressed).
Deprecated - Provided for compatibility with earlier versions only - Use RowColumnHeader.ButtonDown instead
Syntax
VB.NET |
Boolean = object.RowColButtonDown As Boolean |
||
VB |
Boolean = object.RowColButtonDown As Boolean |
||
C#.NET |
bool Boolean = object.RowColButtonDown; |
||
VC++ |
VARIANT_BOOL Boolean = object->RowColButtonDown;
|
||
C |
HRESULT object->get_RowColButtonDown(VARIANT_BOOL* Boolean); |
||
Delphi |
Boolean := object.RowColButtonDown : WordBool; |
||
VB.NET |
object.RowColButtonDown = Boolean As Boolean |
||
VB |
object.RowColButtonDown = Boolean As Boolean |
||
C#.NET |
bool object.RowColButtonDown = Boolean; |
||
VC++ |
VARIANT_BOOL object->RowColButtonDown = Boolean;
|
||
C |
HRESULT object->put_RowColButtonDown(VARIANT_BOOL Boolean); |
||
Delphi |
object.RowColButtonDown := Boolean : WordBool; |
object
A SftTree object.
Boolean
Defines whether the row/column button is currently down (pressed).
Boolean |
Description |
True |
The row/column button is pressed. |
False |
The row/column button is not pressed. |
Comments
Deprecated - Provided for compatibility with earlier versions only - Use RowColumnHeader.ButtonDown instead
The RowColButtonDown property defines whether the row/column button is currently down (pressed).
The row/column header is only available if both row headers (see RowHeaders.Appearance property) and column headers (see Headers.Appearance property) are shown.
The ItemClick event is generated when the user clicks on the row/column header button. The RowColumnHeader.RemainUp property can be used to define the button to automatically return to its "up" position after being pressed.
The row/column header is drawn as a button if the RowColumnHeader.Appearance property is set accordingly.
See Also SftTree Object | Object Hierarchy