Class MetaColumnSortItem
Represents a sort item of the meta column.
Inheritance
System.Object
MetaColumnSortItem
Implements
System.ComponentModel.INotifyPropertyChanged
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Sartorius.SAF.Presentation.Controls
Assembly: Sartorius.SAF.Presentation.Controls.dll
Syntax
public class MetaColumnSortItem : INotifyPropertyChanged
Constructors
View SourceMetaColumnSortItem()
Initializes a new instance of the MetaColumnSortItem class.
Declaration
public MetaColumnSortItem()
Properties
View SourceHeaderLabel
Gets or sets the header label.
Declaration
public object HeaderLabel { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
IsSelected
Gets or sets a value indicating whether the sort item is selected.
Declaration
public bool IsSelected { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Remarks
Only one item should be selected.
ListLabel
Gets or sets the list label displayed in the list.
Declaration
public object ListLabel { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
PropertyName
Gets or sets the property name that is used for sorting.
Declaration
public string PropertyName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
SortComparer
Gets or sets the sort comparer.
Declaration
public IListSortComparer SortComparer { get; set; }
Property Value
Type | Description |
---|---|
IListSortComparer |
Remarks
The SortComparer has priority of the PropertyName and SortDirection.
SortDirection
Gets or sets the sort direction.
Declaration
public ListSortDirection SortDirection { get; set; }
Property Value
Type | Description |
---|---|
System.ComponentModel.ListSortDirection |
Events
View SourcePropertyChanged
Occurs when a property value changes.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
Type | Description |
---|---|
System.ComponentModel.PropertyChangedEventHandler |
Implements
System.ComponentModel.INotifyPropertyChanged