Adds an annotation at the specified location in a page's annotation Array.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void AnnotInsert(
int pos,
IAnnot annot
)
Public Sub AnnotInsert (
pos As Integer,
annot As IAnnot
)
public:
virtual void AnnotInsert(
[InAttribute] int pos,
[InAttribute] IAnnot^ annot
) sealed
function AnnotInsert(pos, annot);
Parameters
- pos
- Type: SystemInt32
location in the Array to insert the object. The object is inserted
before the specified location. The first element in an Array has a pos of zero.
If pos >= GetNumAnnots(), the method appends the annotation to the Array.
- annot
- Type: pdftron.PDFIAnnot
annotation to add.
See Also