Prepend the specified translation vector (offsetX and offsetY).

Namespace: Spire.Pdf.Graphics
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 7.9.2.0 (7.9.2.1020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public void Translate(
	float offsetX,
	float offsetY
)
Public Sub Translate ( 
	offsetX As Single,
	offsetY As Single
)
public:
void Translate(
	float offsetX, 
	float offsetY
)
member Translate : 
        offsetX : float32 * 
        offsetY : float32 -> unit 

Parameters

offsetX
Single
The x value by which to translate.
offsetY
Single
The y value by which to translate.

See Also