Class IgbRowSelectionEventArgsDetail
The event arguments when the selection state of a row is being changed
The event is cancelable
Inheritance
System.Object
IgbRowSelectionEventArgsDetail
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbRowSelectionEventArgsDetail : BaseRendererElement, JsonSerializable
Constructors
IgbRowSelectionEventArgsDetail()
Declaration
public IgbRowSelectionEventArgsDetail()
Properties
Added
Represents an array of all added rows
Whenever a row has been selected, the array is "refreshed" with the selected rows
Declaration
public object[] Added { get; set; }
Property Value
| Type |
Description |
| System.Object[] |
|
AddedScript
Provides a means of setting Added in the JavaScript environment.
Declaration
public string AddedScript { get; set; }
Property Value
| Type |
Description |
| System.String |
|
AllRowsSelected
Indicates whether or not all rows of the grid have been selected
Declaration
public bool AllRowsSelected { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
Cancel
Provides the ability to cancel the event.
Declaration
public bool Cancel { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
NewSelection
Represents the newly selected rows
Declaration
public object[] NewSelection { get; set; }
Property Value
| Type |
Description |
| System.Object[] |
|
NewSelectionScript
Provides a means of setting NewSelection in the JavaScript environment.
Declaration
public string NewSelectionScript { get; set; }
Property Value
| Type |
Description |
| System.String |
|
OldSelection
Represents an array of rows, that have already been selected
Declaration
public object[] OldSelection { get; set; }
Property Value
| Type |
Description |
| System.Object[] |
|
OldSelectionScript
Provides a means of setting OldSelection in the JavaScript environment.
Declaration
public string OldSelectionScript { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Owner
Provides reference to the owner component.
Declaration
public object Owner { get; set; }
Property Value
| Type |
Description |
| System.Object |
|
Removed
Represents an array of all rows, removed from the selection
Whenever a row has been deselected, the array is "refreshed" with the rows,
that have been previously selected, but are no longer
Declaration
public object[] Removed { get; set; }
Property Value
| Type |
Description |
| System.Object[] |
|
RemovedScript
Provides a means of setting Removed in the JavaScript environment.
Declaration
public string RemovedScript { get; set; }
Property Value
| Type |
Description |
| System.String |
|
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