PdfPathOperationMoveTo Method (PdfPoint) |
Constructs a new Move PdfPathOperation to the specified point.
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(
PdfPoint pt
)
Public Shared Function MoveTo (
pt As PdfPoint
) As PdfPathOperation
Parameters
- pt
- Type: Atalasoft.PdfDoc.GeometryPdfPoint
The point to Move to.
Return Value
Type:
PdfPathOperationA new PdfPathOperation with Action set to Move and one PdfPoint in the Points property.
Examples PdfPathOperation move = PdfPathOperation.MoveTo(destinationPoint);
See Also