Inserts the the field at the specified index.

Namespace: Spire.Pdf.Fields
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,
	PdfField field
)
Public Sub Insert ( 
	index As Integer,
	field As PdfField
)
public:
void Insert(
	int index, 
	PdfField^ field
)
member Insert : 
        index : int * 
        field : PdfField -> unit 

Parameters

index
Int32
The index of the field.
field
PdfField
The field which should be inserted at the specified index.

See Also