Click or drag to resize

GridViewCellEventArgs Constructor

Initializes a new instance of the GridViewCellEventArgs class.

Namespace:  Eto.Forms
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
public GridViewCellEventArgs(
	GridColumn gridColumn,
	int row,
	int column,
	Object item
)

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