GroupHeaderContext
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
public GroupHeaderContext()
Properties
Gets the aggregate values of the IDataGroup per DataGridColumn.
public IEnumerable<string> AggregateValues { get; }
Gets the GroupDescriptorBase instance that provides the grouping information.
public GroupDescriptorBase Descriptor { get; }
Gets the RadDataGrid instance that provides the grouping context.
public RadDataGrid Grid { get; }
Gets the IDataGroup instance associated with the context.
public IDataGroup Group { get; }
Gets or sets a value indicating whether the IDataGroup, this context is associated with, is currently expanded (has its child items visible).
public bool IsExpanded { get; set; }
Methods
Raises the PropertyChanged event.
protected void OnPropertyChanged(string changedPropertyName = "")
Provides an entry point for inheritors to provide additional logic over the PropertyChanged routine.
protected virtual void PropertyChangedOverride(string changedPropertyName)
Events
Occurs immediately after a property of this instance has changed.
public event PropertyChangedEventHandler PropertyChanged
Implements: