Click or drag to resize

PdfPathOperationMoveTo Method (Double, Double)

Constructs a new Move PdfPathOperation to the specified x and y coordinates.

Namespace:  Atalasoft.PdfDoc.Generating.Rendering
Assembly:  Atalasoft.PdfDoc (in Atalasoft.PdfDoc.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public static PdfPathOperation MoveTo(
	double x,
	double y
)

Parameters

x
Type: SystemDouble
The x coordinate of the point.
y
Type: SystemDouble
The y coordinate of the point.

Return Value

Type: PdfPathOperation
A new PdfPathOperation with Action set to Move and one PdfPoint in the Points property.
Examples
PdfPathOperation move = PdfPathOperation.MoveTo(destinationX, destinationY);
See Also