PdfCanvas.TranslateTransform Method

Changes the origin of the coordinate system by prepending the specified translation to the transformation matrix of this PdfCanvas.

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public void TranslateTransform(
	double x,
	double y
)
VB
Public Sub TranslateTransform ( 
	x As Double,
	y As Double
)

Parameters

x
Type: System.Double
The x-coordinate of the translation.
y
Type: System.Double
The y-coordinate of the translation.

See Also