Scale()

Matrix::Scale(float, float) method

Applies the specified scale vector to the matrix represented by the current object.

void System::Drawing::Drawing2D::Matrix::Scale(float scaleX, float scaleY)

Arguments

ParameterTypeDescription
scaleXfloatThe value by which to scale the matrix in x-axis direction
scaleYfloatThe value by which to scale the matrix in y-axis direction

Matrix::Scale(float, float, MatrixOrder) method

Applies the specified scale vector to the matrix represented by the current object.

void System::Drawing::Drawing2D::Matrix::Scale(float scaleX, float scaleY, MatrixOrder order)

Arguments

ParameterTypeDescription
scaleXfloatThe value by which to scale the matrix in x-axis direction
scaleYfloatThe value by which to scale the matrix in y-axis direction
orderMatrixOrderThe order in which the scale vector is applied to the matrix

See Also