Class TableColumnModel
Represents a table column's settings.
Inherited Members
Namespace: Syncfusion.Blazor.BlockEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class TableColumnModel
Constructors
TableColumnModel()
Declaration
public TableColumnModel()
Properties
HeaderText
The header cell content for this column.
Declaration
public string HeaderText { get; set; }
Property Value
| Type |
|---|
| string |
ID
Unique identifier for the column.
Declaration
public string ID { get; set; }
Property Value
| Type |
|---|
| string |
Type
The type of content allowed in this column's cells. Mirrors EJ2 TableColumnType; stored as string to avoid enum coupling.
Declaration
[JsonConverter(typeof(JsonStringEnumConverter))]
public TableColumnType Type { get; set; }
Property Value
| Type |
|---|
| TableColumnType |
Width
Specifies the width for the column. Accepts CSS length (e.g., "120px", "20%") or empty.
Declaration
public string Width { get; set; }
Property Value
| Type |
|---|
| string |