VintaSoft Imaging .NET SDK 12.3: Documentation for .NET developer
Vintasoft.Imaging.Codecs.ImageFiles.Tiff Namespace / TiffPageCollection Class / Sort(Int32[]) Method
Syntax Exceptions Remarks Requirements SeeAlso
In This Topic
    Sort(Int32[]) Method (TiffPageCollection)
    In This Topic
    Sorts pages of the collection.
    Syntax
    'Declaration
    
    Public Sub Sort( _
    ByVal indices
    An array with new indices of TIFF pages.
    () As System.Int32 _
    )
    public void Sort(
    System.Int32[] indices
    )
    public: void Sort(
    System.Int32[]* indices
    )
    public:
    void Sort(
    array<System.Int32>^ indices
    )

    Parameters

    indices
    An array with new indices of TIFF pages.
    Exceptions
    ExceptionDescription
    Thrown if indices is null.
    Thrown if length of indices and this collection is not the same.
    Remarks

    Indices array determines new order of pages in the collection, i.e. first page in the collection must have indices[0] position, second page in the collection must have indices[1] position, third page in the collection must have indices[2] position, etc.

    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