Translates 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 TranslateTransform(
	float offsetX,
	float offsetY
)
Public Sub TranslateTransform ( 
	offsetX As Single,
	offsetY As Single
)
public:
void TranslateTransform(
	float offsetX, 
	float offsetY
)
member TranslateTransform : 
        offsetX : float32 * 
        offsetY : float32 -> unit 

Parameters

offsetX
Single
The X value by which to translate coordinate system.
offsetY
Single
The Y value by which to translate coordinate system.

See Also