VintaSoft Imaging .NET SDK 12.3: Documentation for .NET developer
Vintasoft.Imaging.Codecs.ImageFiles.Tiff Namespace / TiffPageCollection Class / CopyTo(TiffPage[],Int32) Method
Syntax Requirements SeeAlso
In This Topic
    CopyTo(TiffPage[],Int32) Method (TiffPageCollection)
    In This Topic
    Copies pages of the collection to an Array, starting at a particular Array index.
    Syntax
    'Declaration
    
    Public Overrides Sub CopyTo( _
    ByVal array
    The one-dimensional Array that is the destination of pages copied from the page collection. The Array must have zero-based indexing.
    () As TiffPage, _
    ByVal arrayIndex
    The zero-based index in array at which copying begins.
    As System.Int32 _
    )
    public override void CopyTo(
    TiffPage[] array,
    System.Int32 arrayIndex
    )
    public: void CopyTo(
    TiffPage*[]* array,
    System.Int32 arrayIndex
    ); override
    public:
    void CopyTo(
    array<TiffPage^>^ array,
    System.Int32 arrayIndex
    ); override

    Parameters

    array
    The one-dimensional Array that is the destination of pages copied from the page collection. The Array must have zero-based indexing.
    arrayIndex
    The zero-based 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