trigger CornerButton_LClicked

Interactive trigger that is activated when the user clicks the corner button of the Grid widget, with or without any combination of the Shift, Alt, and Control keys.

trigger CornerButton_LClicked
  params
    numeric shiftKey : in
  endparams

  ; <Your code here>

end; trigger CornerButton_LClicked
Applies to: Form widgets: egrid (Grid)
Activation: Activated when the user clicks the corner button of the Grid widget., with or without any combination of the Shift, Alt, and Control keys.
Default behavior: None
Behavior upon completion: None

Parameters

shiftKey—integer that indicates whether the Shift, Alt, Control, or a combination of these keys, is pressed when the corner button is clicked.

Values returned in shiftKey
shiftKey Shift Control Alt
0 Not pressed Not pressed Not pressed
1 Pressed Not pressed Not pressed
2 Not pressed Pressed Not pressed
3 Pressed Pressed Not pressed
4 Not pressed Not pressed Pressed
5 Pressed Not pressed Pressed
6 Not pressed Pressed Pressed
7 Pressed Pressed Pressed