[]
Creates a new event arguments object for the sheet.
public SheetViewEventArgs()
Public Sub New()
Creates a new event arguments object for the sheet, specifying the row and column.
public SheetViewEventArgs(int row, int column)
Public Sub New(row As Integer, column As Integer)
Type | Name | Description |
---|---|---|
int | row | Row index |
int | column | Column index |
Creates a new event arguments object for the sheet, specifying the row, column, and number of rows and columns.
public SheetViewEventArgs(int row, int column, int rowCount, int columnCount)
Public Sub New(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer)
Type | Name | Description |
---|---|---|
int | row | Row index |
int | column | Column index |
int | rowCount | Number of rows |
int | columnCount | Number of columns |