SuspendableDocumentNodeHandleLowPriorityChildChangeCases Method |
Processes the event args e when this object is not suspended. This function serves two purposes:
i) updating some cached data of this object by processing the event args of the child,
and ii) optional transforming the event args, for instance to a new type, which afterwards is send to the parent and is used as event args in the [E:Changed] event of this object.
The transformed event args is not used if this object is suspended (in this case the original event args is used).
Namespace: Altaxo.MainAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax protected virtual bool HandleLowPriorityChildChangeCases(
Object? sender,
ref EventArgs e
)
Parameters
- sender Object
- The sender of the event args, usually a child of this object.
- e EventArgs
- The EventArgs instance containing the event data. On return, you can provided transformed event args by this parameter.
Return Value
BooleanTrue if the event will not change this object, and further processing of the event is not neccessary.
If in doubt, return
false. This will allow the further processing of the event.
See Also