Called when a
Row is expanding or collapsing.
Namespace: Dapfor.Wpf.ControlsAssembly: Dapfor.Wpf (in Dapfor.Wpf.dll) Version: 4.1.0.26317 (4.1.0.26317)
Syntax
| C# |
|---|
protected virtual bool OnRowExpansionChanging(
Row row,
bool newValue
) |
| Visual Basic |
|---|
Protected Overridable Function OnRowExpansionChanging (
row As Row,
newValue As Boolean
) As Boolean |
| Visual C++ |
|---|
protected:
virtual bool OnRowExpansionChanging(
Row^ row,
bool newValue
) |
| F# |
|---|
abstract OnRowExpansionChanging :
row : Row *
newValue : bool -> bool
override OnRowExpansionChanging :
row : Row *
newValue : bool -> bool |
Parameters
- row
- Type: Dapfor.Wpf.Controls..::..Row
The row.
- newValue
- Type: System..::..Boolean
New value, indicating whether the row should be expanded.
Return Value
Type:
BooleanValue, indicating if the operation should be cancelled
See Also