Class CellSaveArgs<T>
Class that defines event argument of the cell save operation.
Implements
System.IEquatable<CellSaveArgs<T>>
Inherited Members
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class CellSaveArgs<T> : GridEventBaseArgs, IEquatable<CellSaveArgs<T>>
Type Parameters
Name | Description |
---|---|
T | TValue of the grid component |
Constructors
CellSaveArgs()
Declaration
public CellSaveArgs()
Properties
Cancel
Defines the cancel option value.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Cell
Defines the cell object.
Declaration
public DOM Cell { get; set; }
Property Value
Type | Description |
---|---|
DOM |
ColumnName
Defines the column name.
Declaration
public string ColumnName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ColumnObject
Defines the column object.
Declaration
public GridColumn ColumnObject { get; set; }
Property Value
Type | Description |
---|---|
GridColumn |
IsForeignKey
Defines isForeignKey option value.
Declaration
public bool IsForeignKey { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
PreviousValue
Defines the previous value of the cell.
Declaration
public object PreviousValue { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
RowData
Defines the row data object.
Declaration
public T RowData { get; set; }
Property Value
Type | Description |
---|---|
T |
Value
Defines the cell value.
Declaration
public object Value { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Methods
Equals(CellSaveArgs<T>)
Declaration
public bool Equals(CellSaveArgs<T> cellSaveArgs)
Parameters
Type | Name | Description |
---|---|---|
CellSaveArgs<T> | cellSaveArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>