Class CellUpdateItem
Represents an individual cell update item containing a cell address and value.
Inherited Members
Namespace: Syncfusion.Blazor.Spreadsheet
Assembly: Syncfusion.Blazor.Spreadsheet.dll
Syntax
public class CellUpdateItem
Constructors
CellUpdateItem()
Declaration
public CellUpdateItem()
Properties
CellAddress
Gets or sets the address of the cell to update, which must include the sheet name in the format "SheetName!CellAddress" (e.g., "Sheet1!A1"). This property is required and must follow the proper format. This must be a valid cell address (e.g., "A1", "B2").
Declaration
public string CellAddress { get; set; }
Property Value
| Type |
|---|
| string |
Value
Gets or sets the new value to assign to the cell. This can be a string, number, boolean, or any other compatible data type.
Declaration
public object Value { get; set; }
Property Value
| Type |
|---|
| object |