Class TableCell
Represents a table cell in a Markdown table.
Inheritance
System.Object
TableCell
Namespace: Radzen.Blazor.Markdown
Assembly: Radzen.Blazor.dll
Syntax
public class TableCell : object, INode, IBlockInlineContainer
Constructors
TableCell(String, TableCellAlignment)
Initializes a new instance of the TableCell class.
Declaration
public TableCell(string value, TableCellAlignment alignment = TableCellAlignment.None)
Parameters
Type | Name | Description |
---|---|---|
System.String | value | |
TableCellAlignment | alignment |
Properties
Alignment
Gets the alignment of the table cell.
Declaration
public TableCellAlignment Alignment { get; }
Property Value
Type | Description |
---|---|
TableCellAlignment |
Children
Gets the children of the table cell.
Declaration
public IReadOnlyList<Inline> Children { get; }
Property Value
Type | Description |
---|---|
IReadOnlyList<Inline> |
Value
Gets or sets the inline content of the cell
Declaration
public string Value { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
Accept(INodeVisitor)
Accepts a INodeVisitor.
Declaration
public void Accept(INodeVisitor visitor)
Parameters
Type | Name | Description |
---|---|---|
INodeVisitor | visitor |
Add(Inline)
Appends a child to table cell.
Declaration
public void Add(Inline node)
Parameters
Type | Name | Description |
---|---|---|
Inline | node |