Click or drag to resize

PdfPathOperationLineTo Method (PdfPoint)

Constructs a new Line 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 LineTo(
	PdfPoint pt
)

Parameters

pt
Type: Atalasoft.PdfDoc.GeometryPdfPoint
The point to connect a line to.

Return Value

Type: PdfPathOperation
A new PdfPathOperation with Action set ot Line and one PdfPoint in the Points property.
Examples
PdfPathOperation line = PdfPathOpertaion.LineTo(destPt);
See Also