Class to represent a PDF path. More...
Public Member Functions | |
Boolean | Release () |
Release resources of current PDF path object. More... | |
void | Clear () |
Clear all path points. More... | |
int32 | CountPathPoints () |
Count path points. More... | |
PathPoint^ | GetPathPoint (int32 index) |
Get a path point by index. More... | |
Boolean | AddPathPoint (PathPoint^ pathPoint) |
Add a path point to the end. More... | |
Boolean | RemovePathPoint (int32 index) |
Remove a path point by index. More... | |
Static Public Member Functions | |
static PDFPath^ | Create () |
Create a new PDF path object. More... | |
Properties | |
int64 | pointer |
Pointer to a handle of PDF path object. This pointer is not useful outside this SDK. The application should not access the pointer to the handle of the PDF path object directly. | |
Class to represent a PDF path.
Boolean Foxit::PDFPath::AddPathPoint | ( | PathPoint^ | pathPoint | ) |
Add a path point to the end.
[in] | pathPoint | A Foxit::PathPoint object that specifies the path point to be added to the end of current path. Please check comment of class Foxit::PathPoint to ensure pass a valid Foxit::PathPoint object. |
void Foxit::PDFPath::Clear | ( | ) |
Clear all path points.
int32 Foxit::PDFPath::CountPathPoints | ( | ) |
Count path points.
|
static |
Create a new PDF path object.
PathPoint ^ Foxit::PDFPath::GetPathPoint | ( | int32 | index | ) |
Get a path point by index.
[in] | index | The index of path point object to be got. Range: 0 to (pathpointcount-1). pathpointcount is returned by function PDFPath::CountPathPoints. |
Boolean Foxit::PDFPath::Release | ( | ) |
Release resources of current PDF path object.
Boolean Foxit::PDFPath::RemovePathPoint | ( | int32 | index | ) |
Remove a path point by index.
[in] | index | The index of path point object to be got. Range: 0 to (pathpointcount-1). pathpointcount is returned by function PDFPath::CountPathPoints. |