Class IgbSectionInformation
Represents information about a section in a data source.
Inheritance
System.Object
IgbSectionInformation
Assembly: IgniteUI.Blazor.dll
public class IgbSectionInformation : BaseRendererElement, JsonSerializable
Constructors
Declaration
public IgbSectionInformation()
Properties
Gets the end index for the group.
Declaration
public int EndIndex { get; protected set; }
Property Value
| Type |
Description |
| System.Int32 |
|
Gets the key properties for the group.
Declaration
public string[] GroupKeyProperties { get; protected set; }
Property Value
| Type |
Description |
| System.String[] |
|
Gets the key values for the group.
Declaration
public object[] GroupKeyValues { get; protected set; }
Property Value
| Type |
Description |
| System.Object[] |
|
Provides a means of setting GroupKeyValues in the JavaScript environment.
Declaration
public string GroupKeyValuesScript { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Gets the start index for the group.
Declaration
public int StartIndex { get; protected set; }
Property Value
| Type |
Description |
| System.Int32 |
|
Gets the summary results for the group.
Declaration
public IgbDataGridSummaryResult[] SummaryResults { get; protected set; }
Property Value
Declaration
public override string Type { get; }
Property Value
| Type |
Description |
| System.String |
|
Overrides
Methods
Declaration
public override object FindByName(string name)
Parameters
| Type |
Name |
Description |
| System.String |
name |
|
Returns
| Type |
Description |
| System.Object |
|
Overrides
Declaration
protected override void FromEventJson(BaseRendererControl control, Dictionary<string, object> args)
Parameters
| Type |
Name |
Description |
| BaseRendererControl |
control |
|
| System.Collections.Generic.Dictionary<System.String, System.Object> |
args |
|
Overrides
Declaration
protected override void ToEventJson(BaseRendererControl control, Dictionary<string, object> args)
Parameters
| Type |
Name |
Description |
| BaseRendererControl |
control |
|
| System.Collections.Generic.Dictionary<System.String, System.Object> |
args |
|
Overrides
Implements