Provides information on the Row in the Grid.

Namespace: Dapfor.Net.Ui
Assembly: Dapfor.Net (in Dapfor.Net.dll) Version: 2.10.3.24917 (2.10.3.24917)

Syntax

C#
public GridRowSelectionEventArgs(
	Grid grid,
	Row row,
	bool newSelectionState
)
Visual Basic
Public Sub New ( 
	grid As Grid,
	row As Row,
	newSelectionState As Boolean
)
Visual C++
public:
GridRowSelectionEventArgs(
	Grid^ grid, 
	Row^ row, 
	bool newSelectionState
)
F#
new : 
        grid : Grid * 
        row : Row * 
        newSelectionState : bool -> GridRowSelectionEventArgs

Parameters

grid
Type: Dapfor.Net.Ui..::..Grid
The grid.
row
Type: Dapfor.Net.Ui..::..Row
The row.
newSelectionState
Type: System..::..Boolean
if set to true, the Row should be selected.

See Also