TdxScaleFactor.Assign(Integer,Integer,Boolean) Method
Updates the scale factor’s numerator and denominator.
Declaration
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