Class IgbFormatCellEventArgs
Inheritance
System.Object
IgbFormatCellEventArgs
Assembly: IgniteUI.Blazor.dll
public class IgbFormatCellEventArgs : BaseRendererElement, JsonSerializable
Constructors
Declaration
public IgbFormatCellEventArgs()
Properties
The cell is part of a grouping row.
Declaration
public bool IsGroup { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
The cell is part of a summary row.
Declaration
public bool IsSummary { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
Gets the data item associated with the cell.
Declaration
public object Item { get; set; }
Property Value
| Type |
Description |
| System.Object |
|
Provides a means of setting Item in the JavaScript environment.
Declaration
public string ItemScript { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Gets the row index of the cell to format.
Declaration
public int Row { get; set; }
Property Value
| Type |
Description |
| System.Int32 |
|
Text
Sets the formatted text to display in the cell.
Declaration
public string Text { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Declaration
public override string Type { get; }
Property Value
| Type |
Description |
| System.String |
|
Overrides
Gets the value that is to be displayed in the cell.
Declaration
public object Value { get; set; }
Property Value
| Type |
Description |
| System.Object |
|
Provides a means of setting Value in the JavaScript environment.
Declaration
public string ValueScript { get; set; }
Property Value
| Type |
Description |
| System.String |
|
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