Fired when the user clicks on a header cell.

Parameters

ParameterDescription
HeaderCellHeaderCell that was clicked
PointMouse cursor location relative the control's top left corner
ButtonThe button pressed during the click
ShiftIndicates whether or not the SHIFT key is down
CtrlIndicates whether or not the CTRL key is down

Remarks

The OnHeaderClick event is fired when the user clicks on a header cell.

The HeaderCell parameter indicates the header cell that was clicked on. It contains the column and row location delimited by a semi-colon. For example, double clicking on the top left header cell will return "1;1".

The Point parameter contains the mouse cursors coordinates relative to the upper left corner of the control. It contains the x and y positions delimited by a comma, e.g, "100,100".

The Button parameter indicates the button that is used to fire the click event. This value is "Left" if the left mouse button was pressed, "Middle" if the middle mouse button was pressed, or "Right" if the right mouse button was pressed.

The Shift and Ctrl parameters indicate whether or not the SHIFT or CTRL keys, respectively, were pressed when the event was fired. If either key was pressed, then its corresponding parameter will have a value of 1.

Example

Transfer Param1 to HeaderCell 
Transfer Param2 to Point 
Transfer Param3 to Button 
Transfer Param4 to Shift 
Transfer Param5 to Ctrl 

// Bold the header's font when clicked 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.HeaderFont[":HeaderCell:"]", @SVM:@SVM:700)

See Also

OnClickOnHeaderDblClickOnHeaderHyperClick

  • No labels