VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.Pdf.Tree Namespace / PdfPageCollection Class / CopyTo(PdfPage[],Int32) Method
Syntax Requirements SeeAlso
In This Topic
    CopyTo(PdfPage[],Int32) Method (PdfPageCollection)
    In This Topic
    Copies all the pages of the PdfPageCollection instance to the specified one-dimensional Array.
    Syntax
    'Declaration
    
    Public Sub CopyTo( _
    ByVal array
    The one-dimensional Array that is the destination of the pages copied from the PdfPageCollection instance.
    () As PdfPage, _
    ByVal arrayIndex
    A integer that represents the index in array at which copying begins.
    As System.Int32 _
    )
    public void CopyTo(
    PdfPage[] array,
    System.Int32 arrayIndex
    )
    public: void CopyTo(
    PdfPage*[]* array,
    System.Int32 arrayIndex
    )
    public:
    void CopyTo(
    array<PdfPage^>^ array,
    System.Int32 arrayIndex
    )

    Parameters

    array
    The one-dimensional Array that is the destination of the pages copied from the PdfPageCollection instance.
    arrayIndex
    A integer that represents the index in array at which copying begins.
    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