|
|
|
SftTreeHeaders.Pressed Property |
Defines the currently pressed column header button.
Syntax
VB.NET |
ColIndex = object.Pressed As Short |
||
VB |
ColIndex = object.Pressed As Integer |
||
C#.NET |
short ColIndex = object.Pressed; |
||
VC++ |
short ColIndex = object->Pressed;
|
||
C |
HRESULT object->get_Pressed(short* ColIndex); |
||
Delphi |
ColIndex := object.Pressed : Smallint; |
||
VB.NET |
object.Pressed = ColIndex As Short |
||
VB |
object.Pressed = ColIndex As Integer |
||
C#.NET |
short object.Pressed = ColIndex; |
||
VC++ |
short object->Pressed = ColIndex;
|
||
C |
HRESULT object->put_Pressed(short ColIndex); |
||
Delphi |
object.Pressed := ColIndex : Smallint; |
object
A SftTreeHeaders object.
ColIndex
Defines the currently pressed column header button. This can be -1 if no column header button is pressed.
Comments
The Pressed property defines the currently pressed column header button.
Only one button can be pressed at a time. All buttons can be reset by specifying -1 as ColIndex.
The Header.RemainUp property can be used to allow header buttons to automatically return to their "up" position, so the Headers.Pressed property does not have to be used.
See Also SftTreeHeaders Object | Object Hierarchy