PdfPathElement(PdfPathOperation) Constructor

Initializes a new PdfPathElement with the specified ordered list of path operations. Useful for path definitions assembled statically: new PdfPathElement( PdfPathOperation.MoveTo(0, 0), PdfPathOperation.LineTo(100, 0), PdfPathOperation.LineTo(50, 50), PdfPathOperation.Close()) The first operation must be a MoveTo

Definition

Namespace: HiQPdf.Next
Assembly: HiQPdf.Next (in HiQPdf.Next.dll) Version: 18.9.2
C#
public PdfPathElement(
	params PdfPathOperation[] operations
)

Parameters

operations  PdfPathOperation
The ordered operations that build up the path

See Also