Table of Contents

Class GroupDefinition<T>

Namespace
MudBlazor
Assembly
MudBlazor.dll

Represents the grouping information for columns in a MudDataGrid<T>.

public class GroupDefinition<T>

Type Parameters

T
Inheritance
GroupDefinition<T>
Inherited Members
Extension Methods

Constructors

GroupDefinition(IGrouping<object?, T>, bool)

Creates a new instance.

public GroupDefinition(IGrouping<object?, T> grouping, bool expanded)

Parameters

grouping IGrouping<object, T>

The LINQ definition of the grouping.

expanded bool

Expands this group.

Properties

Expanded

Expands this group.

public bool Expanded { get; set; }

Property Value

bool

Remarks

Defaults to False.

Grouping

The LINQ definition of the grouping.

public IGrouping<object?, T> Grouping { get; set; }

Property Value

IGrouping<object, T>