Class IgbSortingEventArgsDetail
Represents event arguments related to sorting and grouping operations
The event is cancelable
Inheritance
System.Object
IgbSortingEventArgsDetail
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbSortingEventArgsDetail : BaseRendererElement, JsonSerializable
Constructors
IgbSortingEventArgsDetail()
Declaration
public IgbSortingEventArgsDetail()
Properties
Cancel
Provides the ability to cancel the event.
Declaration
public bool Cancel { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
GroupingExpressions
Optional
Represents the grouping expressions applied to the grid.
It can be a single grouping expression or an array of them
The expression contains information like the sorting expression and criteria by which the elements will be grouped
Declaration
public IgbGroupingExpression[] GroupingExpressions { get; set; }
Property Value
Owner
Provides reference to the owner component.
Declaration
public object Owner { get; set; }
Property Value
| Type |
Description |
| System.Object |
|
SortingExpressions
Optional
Represents the sorting expressions applied to the grid.
It can be a single sorting expression or an array of them
The expression contains information like file name, whether the letter case should be taken into account, etc.
Declaration
public IgbSortingExpression[] SortingExpressions { get; set; }
Property Value
Type
Declaration
public override string Type { get; }
Property Value
| Type |
Description |
| System.String |
|
Overrides
Methods
FindByName(String)
Declaration
public override object FindByName(string name)
Parameters
| Type |
Name |
Description |
| System.String |
name |
|
Returns
| Type |
Description |
| System.Object |
|
Overrides
FromEventJson(BaseRendererControl, Dictionary<String, Object>)
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
SetNativeElement(Object)
Declaration
public void SetNativeElement(object element)
Parameters
| Type |
Name |
Description |
| System.Object |
element |
|
SetNativeElementAsync(Object)
Declaration
public Task SetNativeElementAsync(object element)
Parameters
| Type |
Name |
Description |
| System.Object |
element |
|
Returns
| Type |
Description |
| System.Threading.Tasks.Task |
|
ToEventJson(BaseRendererControl, Dictionary<String, Object>)
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