Sets the specific point in the Ink List.
Namespace:
pdftron.PDF.Annots
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void SetPoint(
int pathindex,
int pointindex,
Point pt
)
Public Sub SetPoint (
pathindex As Integer,
pointindex As Integer,
pt As Point
)
public:
virtual void SetPoint(
[InAttribute] int pathindex,
[InAttribute] int pointindex,
[InAttribute] Point^ pt
) sealed
function SetPoint(pathindex, pointindex, pt);
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".
- pt
- Type: pdftron.PDFPoint
A Point object that is to be 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