Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxScaleFactor.Assign(Integer,Integer,Boolean) Method

Updates the scale factor’s numerator and denominator.

#Declaration

Delphi
procedure Assign(ANumerator: Integer; ADenominator: Integer; AIsLoading: Boolean = False); overload;

#Parameters

Name Type Description
ANumerator Integer

The new Numerator property value.

ADenominator Integer

The new Denominator property value.

AIsLoading Boolean

Optional. Specifies if the registered listener object is currently being loaded.

For example, TdxForm class descendant instances track scale factor changes in their components.

#Remarks

Call the Assign procedure to assign ANumerator and ADenominator parameter values to Numerator and Denominator properties.

Note

Unlike Assign, the Change procedure multiplies Numerator and Denominator property values by specified values.

See Also