Inserts annotation to the collection at the specified index.

Namespace: Spire.Pdf.Annotations
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 6.2.6.0 (6.2.6.2020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public void Insert(
	int index,
	PdfAnnotation annotation
)
Public Sub Insert ( 
	index As Integer,
	annotation As PdfAnnotation
)
public:
void Insert(
	int index, 
	PdfAnnotation^ annotation
)
member Insert : 
        index : int * 
        annotation : PdfAnnotation -> unit 

Parameters

index
Int32
Index where to insert the element.
annotation
PdfAnnotation
The annotation to insert in the collection.

See Also