Class PropertyGroupDescription
Represents a class that contains the grouping information like group description's name and converter based on which grouping for a property is processed.
Implements
Inherited Members
Namespace: Syncfusion.UI.Xaml.Data
Assembly: Syncfusion.Data.WinUI.dll
Syntax
public class PropertyGroupDescription : GroupDescription, INotifyPropertyChanged
Constructors
PropertyGroupDescription()
Initializes a new instance of PropertyGroupDescription class.
Declaration
public PropertyGroupDescription()
PropertyGroupDescription(String)
Initializes a new instance of PropertyGroupDescription class.
Declaration
public PropertyGroupDescription(string propertyName)
Parameters
Type | Name | Description |
---|---|---|
System.String | propertyName | The underlying property of the collection view, based on which grouping is to be processed. |
PropertyGroupDescription(String, StringComparison)
Initializes a new instance of PropertyGroupDescription class.
Declaration
public PropertyGroupDescription(string propertyName, StringComparison stringComparison)
Parameters
Type | Name | Description |
---|---|---|
System.String | propertyName | The underlying property of the collection view, based on which grouping is to be processed. |
System.StringComparison | stringComparison | The System.StringComparison for specifying the culture, case, sort rules and etc. |
Properties
PropertyName
Gets or sets the property of the underlying collection view based on which grouping is to be performed.
Declaration
public string PropertyName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The property of the underlying collection view based on which grouping is to be performed. |
StringComparison
Gets or sets the System.StringComparison for specifying the culture, case, sort rules and etc for grouping.
Declaration
public StringComparison StringComparison { get; set; }
Property Value
Type | Description |
---|---|
System.StringComparison | The System.StringComparison for specifying the culture, case, sort rules and etc for grouping. |