VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Annotation Namespace / AnnotationDataCollection Class / Sort Methods / Sort(Int32,Int32,IComparer<AnnotationData>) Method
Syntax Requirements SeeAlso
In This Topic
    Sort(Int32,Int32,IComparer<AnnotationData>) Method (AnnotationDataCollection)
    In This Topic
    Sorts the elements in a range of elements in AnnotationDataCollection using the specified comparer.
    Syntax
    'Declaration
    
    Public Overloads Sub Sort( _
    ByVal index
    The zero-based starting index of the range to sort.
    As System.Int32, _
    ByVal count
    The length of the range to sort.
    As System.Int32, _
    ByVal comparer
    The System.Collections.Generic.IComparer implementation to use when comparing elements, or null to use the default comparer System.Collections.Generic.Comparer.Default.
    As System.Collections.Generic.IComparer(Of AnnotationData) _
    )

    Parameters

    index
    The zero-based starting index of the range to sort.
    count
    The length of the range to sort.
    comparer
    The System.Collections.Generic.IComparer implementation to use when comparing elements, or null to use the default comparer System.Collections.Generic.Comparer.Default.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also