 | PathPointsCollectionAdd Method |
Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 5.1.3
Syntaxpublic void Add(
FS_PATHPOINTF item
)
Public Sub Add (
item As FS_PATHPOINTF
)
public:
virtual void Add(
FS_PATHPOINTF item
) sealed
abstract Add :
item : FS_PATHPOINTF -> unit
override Add :
item : FS_PATHPOINTF -> unit public final 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