[]
Creates a new object with the CellClick event arguments.
public CellClickEventArgs(SpreadView view, int row, int column, int x, int y, MouseButtons button, bool columnHeader, bool rowHeader)
Public Sub New(view As SpreadView, row As Integer, column As Integer, x As Integer, y As Integer, button As MouseButtons, columnHeader As Boolean, rowHeader As Boolean)
Type | Name | Description |
---|---|---|
SpreadView | view | View (Spreadview object) that contains the clicked cell |
int | row | Row index of the clicked cell |
int | column | Column index of the clicked cell |
int | x | X-coordinate of the pointer position |
int | y | Y-coordinate of the pointer position |
MouseButtons | button | Which mouse button was pressed |
bool | columnHeader | Whether the clicked cell is in the column header |
bool | rowHeader | Whether the clicked cell is in the row header |
Creates a new object with the CellClick event arguments.
public CellClickEventArgs(SpreadView view, int row, int column, int x, int y, MouseButtons button, bool columnHeader, bool rowHeader, bool columnFooter)
Public Sub New(view As SpreadView, row As Integer, column As Integer, x As Integer, y As Integer, button As MouseButtons, columnHeader As Boolean, rowHeader As Boolean, columnFooter As Boolean)
Type | Name | Description |
---|---|---|
SpreadView | view | View (Spreadview object) that contains the clicked cell |
int | row | Row index of the clicked cell |
int | column | Column index of the clicked cell |
int | x | X-coordinate of the pointer position |
int | y | Y-coordinate of the pointer position |
MouseButtons | button | Which mouse button was pressed |
bool | columnHeader | Whether the clicked cell is in the column header |
bool | rowHeader | Whether the clicked cell is in the row header |
bool | columnFooter | Whether the clicked cell is in the column footer |
Creates a new object with the CellClick event arguments.
public CellClickEventArgs(SpreadView view, int row, int column, int x, int y, MouseButtons button, bool columnHeader, bool rowHeader, bool columnFooter, int actualRowLayoutIndex, int actualColumnLayoutIndex)
Public Sub New(view As SpreadView, row As Integer, column As Integer, x As Integer, y As Integer, button As MouseButtons, columnHeader As Boolean, rowHeader As Boolean, columnFooter As Boolean, actualRowLayoutIndex As Integer, actualColumnLayoutIndex As Integer)
Type | Name | Description |
---|---|---|
SpreadView | view | View (Spreadview object) that contains the clicked cell |
int | row | Row index of the clicked cell |
int | column | Column index of the clicked cell |
int | x | X-coordinate of the pointer position |
int | y | Y-coordinate of the pointer position |
MouseButtons | button | Which mouse button was pressed |
bool | columnHeader | Whether the clicked cell is in the column header |
bool | rowHeader | Whether the clicked cell is in the row header |
bool | columnFooter | Whether the clicked cell is in the column footer |
int | actualRowLayoutIndex | Actual row index in the layout |
int | actualColumnLayoutIndex | Actual column index in the layout |