Class GroupDescriptor
Represents a grouping description. Used in components that support grouping.
Inheritance
System.Object
GroupDescriptor
Namespace: Radzen
Assembly: Radzen.Blazor.dll
Syntax
public class GroupDescriptor : object
Properties
FormatString
Gets or sets the format string used to display the key in the group.
Declaration
public string FormatString { get; set; }
Property Value
Type | Description |
---|---|
System.String | The format string. |
Property
Gets or sets the property to group by.
Declaration
public string Property { get; set; }
Property Value
Type | Description |
---|---|
System.String | The property. |
SortOrder
Gets or sets the sort order.
Declaration
public SortOrder? SortOrder { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<SortOrder> | The sort order. |
Title
Gets or sets the title displayed in the group.
Declaration
public string Title { get; set; }
Property Value
Type | Description |
---|---|
System.String | The title. |
Methods
GetTitle()
Gets the title of the group.
Declaration
public string GetTitle()
Returns
Type | Description |
---|---|
System.String | System.String. |