Represents an event argument for the grid contextMenu output
Inheritance
System.Object
IgbGridContextMenuEventArgsDetail
Assembly: IgniteUI.Blazor.dll
public class IgbGridContextMenuEventArgsDetail : BaseRendererElement, JsonSerializable
Constructors
Declaration
public IgbGridContextMenuEventArgsDetail()
Properties
Represents the grid cell that triggered the event.
Declaration
public IgbCellType Cell { get; set; }
Property Value
Represents the grid row that triggered the event.
Declaration
public IgbRowType Row { get; 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
public void SetNativeElement(object element)
Parameters
| Type |
Name |
Description |
| System.Object |
element |
|
Declaration
public Task SetNativeElementAsync(object element)
Parameters
| Type |
Name |
Description |
| System.Object |
element |
|
Returns
| Type |
Description |
| System.Threading.Tasks.Task |
|
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