GridViewCellEventArgs Constructor |
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public GridViewCellEventArgs(
GridColumn gridColumn,
int row,
int column,
Object item
)
Public Sub New (
gridColumn As GridColumn,
row As Integer,
column As Integer,
item As Object
)
new :
gridColumn : GridColumn *
row : int *
column : int *
item : Object -> GridViewCellEventArgs
Parameters
- gridColumn
- Type: Eto.FormsGridColumn
Grid column that triggered the event. - row
- Type: SystemInt32
The row that triggered the event, or -1 if no row. - column
- Type: SystemInt32
Column that triggered the event, or -1 if no column. - item
- Type: SystemObject
Item of the row that triggered the event, or null if no item.
See Also