[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Performs actions needed when the button for editor control is clicked.
Source position: grids.pas line 1002
protected procedure TCustomGrid.DoEditButtonClick( |
const ACol: Integer; |
const ARow: Integer |
); virtual; |
ACol |
|
Column number for the affected cell. |
ARow |
|
Row number for the affected cell. |
DoEditButtonClick is a procedure used to perform actions requires when the button for a cell editor or button column is clicked.
ACol and ARow contain the Integer coordinates for the cell where the action occurred.
DoEditButtonClick signals the OnEditButtonClick and OnButtonClick event handlers when they have been assigned for the grid control.
DoEditButtonClick is used in the implementation of the EditButtonClicked method used in cell editor controls, and the MouseUp method.
|
Event handler signalled when the button in an Editor is clicked. |
|
|
Event handler signalled when a button in a column header is clicked. |
|
|
Handles a mouse up event for the grid control. |