Document Solutions for PDF
GrapeCity.Documents.Pdf Assembly / GrapeCity.Documents.Pdf.Graphics Namespace / FormXObject Class / CreateList Method
The target GrapeCity.Documents.Pdf.GcPdfDocument where the new FormXObject objects will be used.
The list of the source GrapeCity.Documents.Pdf.Page objects. These pages can belong to another document.

In This Topic
    CreateList Method
    In This Topic
    Creates a list of FormXObject objects using a specified list of pages as the source.

    Note that Matrix and Bounds properties are automatically adjusted to take into account the GrapeCity.Documents.Pdf.Page.UserUnit property of the source page.

    Syntax
    'Declaration
     
    Public Shared Function CreateList( _
       ByVal doc As GcPdfDocument, _
       ByVal pages As System.Collections.Generic.IList(Of Page) _
    ) As FormXObject()
    public static FormXObject[] CreateList( 
       GcPdfDocument doc,
       System.Collections.Generic.IList<Page> pages
    )

    Parameters

    doc
    The target GrapeCity.Documents.Pdf.GcPdfDocument where the new FormXObject objects will be used.
    pages
    The list of the source GrapeCity.Documents.Pdf.Page objects. These pages can belong to another document.

    Return Value

    The list of created FormXObject objects.
    See Also