Skip to main content
All docs
V23.2

DXMatrix.Scale(Single, Single, DXMatrixOrder) Method

Prepends and applies the specified scale vector to the DXMatrix instance.

Namespace: DevExpress.Drawing

Assembly: DevExpress.Drawing.v23.2.dll

NuGet Package: DevExpress.Drawing

Declaration

public void Scale(
    float scaleX,
    float scaleY,
    DXMatrixOrder order = DXMatrixOrder.Prepend
)

Parameters

Name Type Description
scaleX Single

The value by which to scale DXMatrix in the x-axis direction.

scaleY Single

The value by which to scale DXMatrix in the y-axis direction.

Optional Parameters

Name Type Default Description
order DXMatrixOrder Prepend

An enumeration value that indicates the order (append or prepend) in which the scale vector is applied to this DXMatrix.

See Also