Click or drag to resize

PathPointsCollectionAdd Method

Adds a FS_PATHPOINTF to the collection

Namespace: Patagames.Pdf.Net
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 5.1.3
Syntax
public void Add(
	FS_PATHPOINTF item
)

Parameters

item  FS_PATHPOINTF
The FS_PATHPOINTF to add to the collection

Implements

ICollectionTAdd(T)
Remarks
To append a cubic Bézier curve to the current path you should add three point with BezierTo flag. The curve extends from the current point to the point (x3, y3), using (x1, y1) and (x2, y2) as the Bézier control points. The new current point will be (x3, y3).
See Also