ImageGear .NET v25.2 - Updated
ImageGear.Wpf Assembly / ImageGear.WPF Namespace / ImGearThumbnailCtl Class / SortComparer Property




In This Topic
    SortComparer Property (ImGearThumbnailCtl)
    In This Topic
    Gets or sets an object of a class implementing IComparer interface to make user sorting.
    Syntax
    'Declaration
     
    <BrowsableAttribute(False)>
    <DescriptionAttribute()>
    Public Property SortComparer As IComparer(Of ImGearThumbnailItem)
    'Usage
     
    Dim instance As ImGearThumbnailCtl
    Dim value As IComparer(Of ImGearThumbnailItem)
     
    instance.SortComparer = value
     
    value = instance.SortComparer
    [Browsable(false)]
    [Description()]
    public IComparer<ImGearThumbnailItem> SortComparer {get; set;}
    [Browsable(false)]
    [Description()]
    public: __property IComparer<ImGearThumbnailItem*>* get_SortComparer();
    public: __property void set_SortComparer( 
       IComparer<ImGearThumbnailItem*>* value
    );
    [Browsable(false)]
    [Description()]
    public:
    property IComparer<ImGearThumbnailItem^>^ SortComparer {
       IComparer<ImGearThumbnailItem^>^ get();
       void set (    IComparer<ImGearThumbnailItem^>^ value);
    }

    Property Value

    System.Collections.IComparer value.
    Remarks
    This property is not used in WPF version of Thumbnail control, due to limitation of WPF. See UserSort remark in Sort property.
    See Also