Click or drag to resize

BoundariesChangedEventArgsFromLowerAndUpperBoundChangedT Method

Creates an instance from flags indicating whether the lower or upper bound changed.

Namespace: Altaxo.Graph
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static T FromLowerAndUpperBoundChanged<T>(
	bool haslowerBoundChanged,
	bool hasUpperBoundChanged
)
where T : new(), BoundariesChangedEventArgs

Parameters

haslowerBoundChanged  Boolean
if the lower bound changed.
hasUpperBoundChanged  Boolean
if the upper bound changed.

Type Parameters

T
The concrete event-args type to create.

Return Value

T
A new instance with the requested boundary-change flags applied.
See Also