Click or drag to resize

InverseTickSpacingPreProcessScaleBoundaries Method

Decides giving a raw org and end value, whether or not the scale boundaries should be extended to have more 'nice' values. If the boundaries should be changed, the function return true, and the org and end argument contain the proposed new scale boundaries.

Namespace: Altaxo.Graph.Scales.Ticks
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public override bool PreProcessScaleBoundaries(
	ref AltaxoVariant org,
	ref AltaxoVariant end,
	bool isOrgExtendable,
	bool isEndExtendable
)

Parameters

org  AltaxoVariant
Raw scale org.
end  AltaxoVariant
Raw scale end.
isOrgExtendable  Boolean
True when the org is allowed to be extended.
isEndExtendable  Boolean
True when the scale end can be extended.

Return Value

Boolean
True when org or end are changed. False otherwise.
See Also