ImageGear .NET v25.2 - Updated
ImageGear.Web.UI Library / ImageGear.Web.UI Namespace / ImGearDocumentCollection class / addDocument Method

In This Topic
    addDocument Method
    In This Topic
    Appends a document to the end of the collection.
    Syntax
    ASP.NET Ajax JavaScript (Specification) 
    function addDocument( 
       imGearDocument : ImGearDocument
    ) : (Any);
    ASP.NET Ajax JavaScript (Usage) 
    var resultVar = instanceOfImGearDocumentCollection.addDocument(ImGearDocument);

    Parameters

    imGearDocument
    The document to add to the collection.
    Remarks

    This function will append the ImGearDocument object passed in as the parameter to the collection. This function is similar to the standard JavaScript Array.push() function.

    After this function has added the new imGearDocument to the collection, it will raise the documentAdded event. The event argument contains the imGearDocument object added.

    Note: When adding a new document to the collection, make sure that the new document does not contain a duplicated instance of a ImGearPage object in the document's page collection ImGearPageCollection, ImageGear.Web.UI.ImGearPageCollection.addPage property for details.

    This collection is used within the ImGearThumbnailList control

    See Also