Gets the specific point in the Ink List.
Namespace:
pdftron.PDF.Annots
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public Point GetPoint(
int pathindex,
int pointindex
)
Public Function GetPoint (
pathindex As Integer,
pointindex As Integer
) As Point
public:
virtual Point^ GetPoint(
[InAttribute] int pathindex,
[InAttribute] int pointindex
) sealed
function GetPoint(pathindex, pointindex);
Parameters
- pathindex
- Type: SystemInt32
An unsigned integer indicating the index of the stroked
path
- pointindex
- Type: SystemInt32
An unsigned integer indicating the index of the point
within the stroked path indicated by the parameter "pathindex".
Return Value
Type:
Point A Point object that is located by "pathindex" and "pointindex".
Remarks The Ink list is An Array of n Arrays,
each representing a stroked path. Each Array shall be a series of
Point objects specifying points along the path.
When drawn, the points shall be connected by straight lines or curves
in an implementation-dependent way.
See Also