Fired when the user clicks on a hyperlink in a header cell.
Parameters
Parameter | Description |
---|---|
HeaderCell | HeaderCell whose hyperlink was clicked |
Point | The location of the cursor when the hyperlink was clicked |
Button | The button used to the click the hyperlink |
Shift | Indicates whether or not the SHIFT key is down |
Ctrl | Indicates whether or not the CTRL key is down |
Remarks
The OnHeaderHyperClick event is fired when the user clicks on a hyperlink within a header cell.
The HeaderCell parameter indicates the header cell whose hyperlink was clicked. It contains the column and row location delimited by a semi-colon. For example, clicking on the hyperlink of the top left header cell will return "1;1".
The Point parameter indicates the relative location of the mouse cursor within the table when the hyperlink was clicked.
The Button parameter indicates which mouse button was used to the click the hyperlink and is one of three values: "Left", "Middle", or "Right".
The Shift and Ctrl parameters are boolean values indicating whether or not the SHIFT or CTRL key are down respectively.
Example
Transfer Param1 to HeaderCell Transfer Param2 to Point Transfer Param3 to Button Transfer Param4 to Shift Transfer Param5 to Ctrl // Show a balloon tooltip message when the hyperlink is clicked rv = Msg(@Window, "You clicked the hyperlink for header cell: ":HeaderCell)