'Declaration
Public Event CellClick As CellClickEventHandler
'Usage
Dim instance As FpSpread Dim handler As CellClickEventHandler AddHandler instance.CellClick, handler
public event CellClickEventHandler CellClick
Event Data
The event handler receives an argument of type CellClickEventArgs containing data related to this event. The following CellClickEventArgs properties provide information specific to this event.
Property | Description |
---|---|
ActualColumnLayoutIndex | Gets the actual column index in layout |
ActualRowLayoutIndex | Gets the actual row index in layout |
Button | Gets which mouse button has been pressed. |
Cancel | Gets or sets whether to cancel default processing. |
Column | Gets the column index of the cell that is clicked. |
ColumnFooter | Gets whether the cell that is clicked is in the column footer. |
ColumnHeader | Gets whether the cell that is clicked is in the column headers. |
Row | Gets the row index of the cell that is clicked. |
RowHeader | Gets whether the cell that is clicked is in the row headers. |
View | Gets the view that contains the cell that is clicked. |
X | Gets the x-coordinate of the pointer position. |
Y | Gets the y-coordinate of the pointer position. |
See Also