Called before the
Row's selection is changed.
Namespace: Dapfor.Wpf.ControlsAssembly: Dapfor.Wpf (in Dapfor.Wpf.dll) Version: 4.1.0.26317 (4.1.0.26317)
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.Wpf.Controls..::..Row
The row.
- newState
- Type: System..::..Boolean
if set to true, the Row will be selected.
Return Value
Type:
Booleantrue if the
Row should be selected, Otherwise
false.
See Also