ClassGroupHeaderContext
Represents the context that is passed to the header of DataGridColumn that represents a IDataGroup within a RadDataGrid instance.
Definition
Namespace:Telerik.Maui.Controls.DataGrid
Assembly:Telerik.Maui.Controls.dll
Syntax:
public class GroupHeaderContext : INotifyPropertyChanged
Inheritance: objectGroupHeaderContext
Implements:
Constructors
GroupHeaderContext()
Declaration
public GroupHeaderContext()
Properties
AggregateValues
Gets the aggregate values of the IDataGroup per DataGridColumn.
Declaration
public IEnumerable<string> AggregateValues { get; }
Property Value
Descriptor
Gets the GroupDescriptorBase instance that provides the grouping information.
Declaration
public GroupDescriptorBase Descriptor { get; }
Property Value
Grid
Gets the RadDataGrid instance that provides the grouping context.
Group
Gets the IDataGroup instance associated with the context.
IsExpanded
Gets or sets a value indicating whether the IDataGroup, this context is associated with, is currently expanded (has its child items visible).
Methods
OnPropertyChanged(string)
Raises the PropertyChanged event.
Declaration
protected void OnPropertyChanged(string changedPropertyName = "")
Parameters
changedPropertyName
PropertyChangedOverride(string)
Provides an entry point for inheritors to provide additional logic over the PropertyChanged routine.
Declaration
protected virtual void PropertyChangedOverride(string changedPropertyName)
Parameters
changedPropertyName
ToString()
Returns a string that represents this instance.
Events
PropertyChanged
Occurs immediately after a property of this instance has changed.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Value
Implements