PdfDrawingSurfaceAddPath Method (IEnumerablePdfPathOperation) |
Adds a set of path operations to the current path. Path should start with a Move operation.
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 abstract void AddPath(
IEnumerable<PdfPathOperation> path
)
Public MustOverride Sub AddPath (
path As IEnumerable(Of PdfPathOperation)
)
Parameters
- path
- Type: System.Collections.GenericIEnumerablePdfPathOperation
The path to add.
Examples drawingSurface.AddPath(new PdfPathOperation[] { PdfPathOperation.MoveTo(0, 0), PdfPathOperation.LineTo(100, 150); });
See Also