LEADTOOLS Medical (Leadtools.Medical.Workstation assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.30
StudyInformationComparer Property
See Also 
Leadtools.Medical.Workstation Namespace > ImageListViewLoader Class : StudyInformationComparer Property




Gets or sets an IComparer used to sort an inserted study.

Syntax

Visual Basic (Declaration) 
Public Property StudyInformationComparer As IComparer(Of ListViewStudiesInformation)
Visual Basic (Usage)Copy Code
Dim instance As ImageListViewLoader
Dim value As IComparer(Of ListViewStudiesInformation)
 
instance.StudyInformationComparer = value
 
value = instance.StudyInformationComparer
C# 
public IComparer<ListViewStudiesInformation> StudyInformationComparer {get; set;}
Managed Extensions for C++ 
public: __property IComparer<ListViewStudiesInformation*>* get_StudyInformationComparer();
public: __property void set_StudyInformationComparer( 
   IComparer<ListViewStudiesInformation*>* value
);
C++/CLI 
public:
property IComparer<ListViewStudiesInformation^>^ StudyInformationComparer {
   IComparer<ListViewStudiesInformation^>^ get();
   void set (    IComparer<ListViewStudiesInformation^>^ value);
}

Property Value

An IComparer used to sort an inserted study.

Remarks

This object is used when directly inserting a study information using the InsertStudy method.

Provide a value for this property to load the studies in any order you like (e.g. Instance Number)

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also