Class IgbRowToggleEventArgsDetail
Represents event arguments related to the row's expansion state being changed in a grid
Inheritance
System.Object
IgbRowToggleEventArgsDetail
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbRowToggleEventArgsDetail : IgbBaseEventArgsDetail, JsonSerializable
Constructors
IgbRowToggleEventArgsDetail()
Declaration
public IgbRowToggleEventArgsDetail()
Properties
Cancel
The event is cancelable
cancel returns whether the event has been intercepted and stopped
If the value becomes "true", it returns/exits from the method, instantiating the interface
Declaration
public bool Cancel { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
Expanded
Returns the state of the row after the operation has ended
Indicating whether the row is being expanded (true) or collapsed (false)
Declaration
public bool Expanded { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
RowID
Represents the ID of the row that emitted the event (which state is changed)
Declaration
public object RowID { get; set; }
Property Value
| Type |
Description |
| System.Object |
|
RowKey
Declaration
public object RowKey { get; set; }
Property Value
| Type |
Description |
| System.Object |
|
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
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