 | PathPointsCollection.Insert Method |
Inserts a
FS_PATHPOINTF to the collection at the specified index.
Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic void Insert(
int index,
FS_PATHPOINTF item
)
Public Sub Insert (
index As Integer,
item As FS_PATHPOINTF
)
public:
virtual void Insert(
int index,
FS_PATHPOINTF item
) sealed
abstract Insert :
index : int *
item : FS_PATHPOINTF -> unit
override Insert :
index : int *
item : FS_PATHPOINTF -> unit
public final void Insert(
int index,
FS_PATHPOINTF item
)
function Insert(index, 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