Class SheetCell
Inheritance
System.Object
SheetCell
Namespace: Syncfusion.Blazor.Spreadsheet
Assembly: Syncfusion.Blazor.dll
Syntax
public class SheetCell : ComponentBase
Constructors
SheetCell()
Declaration
public SheetCell()
Properties
Hyperlink
Gets or sets the hyperlink of the cell.
Declaration
public string Hyperlink { get; set; }
Property Value
Type | Description |
---|---|
System.String | The hyperlink associated with the cell. This can be a webpage URL or a sheet reference (e.g., "Sheet3!A3:D3"). |
Remarks
The Hyperlink
property allows you to assign a hyperlink to a cell in the spreadsheet component.
This hyperlink can direct users to an external webpage or another location within the spreadsheet.
Index
Declaration
public int Index { get; set; }
Property Value
Type |
---|
System.Int32 |
Value
Gets or sets the value of the cell, which can be text, date or a number.
Declaration
public string Value { get; set; }
Property Value
Type | Description |
---|---|
System.String | The value of the cell. This can be a string for text, date or a numeric value. |
Remarks
The Value
property allows you to set or retrieve the content of a cell in the spreadsheet component.
This property accepts both text (string), date and time and numeric values (int, double, etc.).
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
Type | Name | Description |
---|---|---|
Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder | __builder |
OnInitializedAsync()
Declaration
protected override Task OnInitializedAsync()
Returns
Type |
---|
System.Threading.Tasks.Task |