Creates an Ink annotation and initialize it using given annotation object.
Erase a rectangle area formed by pt1pt2 with width from the SDF object
Namespace:
pdftron.PDF.Annots
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public static bool ErasePoints(
Obj inkList,
Rect inkRect,
Point pt1,
Point pt2,
double eraserHalfWidth
)
Public Shared Function ErasePoints (
inkList As Obj,
inkRect As Rect,
pt1 As Point,
pt2 As Point,
eraserHalfWidth As Double
) As Boolean
public:
static bool ErasePoints(
[InAttribute] Obj^ inkList,
[InAttribute] Rect^ inkRect,
[InAttribute] Point^ pt1,
[InAttribute] Point^ pt2,
[InAttribute] double eraserHalfWidth
)
pdftron.PDF.Annots.Ink.ErasePoints = function(inkList, inkRect, pt1, pt2, eraserHalfWidth);
Parameters
- inkList
- Type: pdftron.SDFObj
An SDF object containing points on which the erase will be performed - inkRect
- Type: pdftron.PDFRect
A point object that is one end of the eraser segment - pt1
- Type: pdftron.PDFPoint
A point object that is the other end of the eraser segment - pt2
- Type: pdftron.PDFPoint
A point object that is the other end of the eraser segment - eraserHalfWidth
- Type: SystemDouble
The half width of the eraser
Return Value
Type:
Boolean[Missing <returns> documentation for "M:pdftron.PDF.Annots.Ink.ErasePoints(pdftron.SDF.Obj,pdftron.PDF.Rect,pdftron.PDF.Point,pdftron.PDF.Point,System.Double)"]
Remarks The constructor does not copy any data, but is instead the logical
equivalent of a type cast.
See Also