Scales the coordinates by specified coordinates.

Namespace: Spire.Pdf.Graphics
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 6.2.6.0 (6.2.6.2020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public void ScaleTransform(
	float scaleX,
	float scaleY
)
Public Sub ScaleTransform ( 
	scaleX As Single,
	scaleY As Single
)
public:
void ScaleTransform(
	float scaleX, 
	float scaleY
)
member ScaleTransform : 
        scaleX : float32 * 
        scaleY : float32 -> unit 

Parameters

scaleX
Single
The value by which to scale coordinate system in the X axis direction.
scaleY
Single
The value by which to scale coordinate system in the Y axis direction.

See Also