Click or drag to resize

PathPointsCollection.Insert Method

Inserts a FS_PATHPOINTF to the collection at the specified index.

Namespace: Patagames.Pdf.Net
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntax
public void Insert(
	int index,
	FS_PATHPOINTF item
)

Parameters

index  Int32
The zero-based index at which FS_PATHPOINTF should be inserted.
item  FS_PATHPOINTF
The FS_PATHPOINTF to insert into the collection.

Implements

IList<T>.Insert(Int32, 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