VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.Pdf.Tree.InteractiveForms Namespace / PdfInteractiveFormFieldList Class / Insert(Int32,PdfInteractiveFormField) Method
Syntax Exceptions Requirements SeeAlso
In This Topic
    Insert(Int32,PdfInteractiveFormField) Method (PdfInteractiveFormFieldList)
    In This Topic
    Inserts a form field into the PdfInteractiveFormFieldList at the specified index.
    Syntax
    'Declaration
    
    Public Overrides Sub Insert( _
    ByVal index
    The zero-based index at which item should be inserted.
    As System.Int32, _
    ByVal item
    The object to insert. The value can be null for reference types.
    As PdfInteractiveFormField _
    )
    public override void Insert(
    System.Int32 index,
    PdfInteractiveFormField item
    )
    public: void Insert(
    System.Int32 index,
    PdfInteractiveFormField* item
    ); override
    public:
    void Insert(
    System.Int32 index,
    PdfInteractiveFormField^ item
    ); override

    Parameters

    index
    The zero-based index at which item should be inserted.
    item
    The object to insert. The value can be null for reference types.
    Exceptions
    ExceptionDescription
    Thrown if index is less than 0 -or- index is greater than list item count.
    Thrown if item is null.
    Requirements

    Target Platforms: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also