Called before the Row's selection is changed.

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

Syntax

C#
protected virtual bool OnSelectionChanging(
	Row row,
	bool newState
)
Visual Basic
Protected Overridable Function OnSelectionChanging ( 
	row As Row,
	newState As Boolean
) As Boolean
Visual C++
protected:
virtual bool OnSelectionChanging(
	Row^ row, 
	bool newState
)
F#
abstract OnSelectionChanging : 
        row : Row * 
        newState : bool -> bool 
override OnSelectionChanging : 
        row : Row * 
        newState : bool -> bool 

Parameters

row
Type: Dapfor.Net.Ui..::..Row
The row.
newState
Type: System..::..Boolean
if set to true, the Row will be selected.

Return Value

Type: Boolean
true if the Row should be selected, Otherwise false.

See Also