|
|
|
SftBoxRowColumnHeader.RemainUp Property |
Defines whether the row/column button will return to its "up" position when pressed.
Syntax
VB.NET |
Boolean = object.RemainUp As Boolean |
||
VB |
Boolean = object.RemainUp As Boolean |
||
C#.NET |
bool Boolean = object.RemainUp; |
||
VC++ |
VARIANT_BOOL Boolean = object->RemainUp;
|
||
C |
HRESULT object->get_RemainUp(VARIANT_BOOL* Boolean); |
||
Delphi |
Boolean := object.RemainUp : WordBool; |
||
VB.NET |
object.RemainUp = Boolean As Boolean |
||
VB |
object.RemainUp = Boolean As Boolean |
||
C#.NET |
bool object.RemainUp = Boolean; |
||
VC++ |
VARIANT_BOOL object->RemainUp = Boolean;
|
||
C |
HRESULT object->put_RemainUp(VARIANT_BOOL Boolean); |
||
Delphi |
object.RemainUp := Boolean : WordBool; |
object
A SftBoxRowColumnHeader object.
Boolean
Defines whether the row/column button will return to its "up" position when pressed.
Boolean |
Description |
True |
The row/column header button automatically returns to its released ("up") position. |
False |
The row/column header button remains pressed. |
Comments
The RemainUp property defines whether the row/column button will return to its "up" position when pressed.
The RemainUp property determines whether the row/column header button remains pressed after it has been clicked using the mouse button.
This property has no effect if the row/column header is defined as a title or is not present (see RowColumnHeader.Style).
An application can use the RowColumnHeader.Down property to press or release the row/column header button.
The ItemClick and ItemDblClk events occur regardless of the settings of this property.