Click or drag to resize

PlotItemHandleHighPriorityChildChangeCases Method

Handles the case when a child changes, and a reaction is neccessary independently on the suspend state of the table. It is used here to change the event args coming from the StyleObject to PlotItemStyleChangedEventArgs and event args coming from the data object to PlotItemDataChangedEventArgs.

Namespace: Altaxo.Graph.Graph3D.Plot
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
protected override bool HandleHighPriorityChildChangeCases(
	Object? sender,
	ref EventArgs e
)

Parameters

sender  Object
The sender of the event, usually a child of this object.
e  EventArgs
The EventArgs instance containing the event data.

Return Value

Boolean
True if the event will not change the state of the object and the handling of the event is completely done. Thus, if returning true, the object is considered as 'not changed'. If in doubt, return false. This will allow the further processing of the event.
See Also