Class DetailTemplateCell
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class DetailTemplateCell : Object
Constructors
DetailTemplateCell()
Declaration
public DetailTemplateCell()
Properties
CellValue
Gets or sets the text content of the current cell.
Declaration
public object CellValue { get; set; }
Property Value
Type | Description |
---|---|
System.Object | Represents content of the cell. You can specify values such as string, boolean, date, or any desired content to be displayed in the current cell. |
ColumnSpan
Gets or sets the column span for the cell.
Declaration
public Nullable<int> ColumnSpan { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> | The column span representing the number of columns spanned by the cell. |
Hyperlink
Gets or sets the hyperlink associated with the current cell.
Declaration
public Hyperlink Hyperlink { get; set; }
Property Value
Type | Description |
---|---|
Hyperlink | A Hyperlink object representing the cell's hyperlink. During exporting the corresponding cell value is rendered with hyperlink. |
Index
Gets or sets the index for the cell.
Declaration
public Nullable<int> Index { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> | Represents the index of the current cell, determining its location in the row. |
RowSpan
Gets or sets the row span for the cell.
Declaration
public Nullable<int> RowSpan { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> | The row span representing the number of rows spanned by the cell. |