Class TableRow
Represents a table row in a Markdown table.
Implements
Namespace: Radzen.Blazor.Markdown
Assembly: Radzen.Blazor.dll
Syntax
public class TableRow : object, INode
Properties
Cells
/// Gets the cells of the table row.
Declaration
public IReadOnlyList<TableCell> Cells { get; }
Property Value
Type | Description |
---|---|
IReadOnlyList<TableCell> |
Methods
Accept(INodeVisitor)
Accepts a INodeVisitor.
Declaration
public virtual void Accept(INodeVisitor visitor)
Parameters
Type | Name | Description |
---|---|---|
INodeVisitor | visitor |
Add(String, TableCellAlignment)
Adds a cell to the table row.
Declaration
public void Add(string value, TableCellAlignment alignment = TableCellAlignment.None)
Parameters
Type | Name | Description |
---|---|---|
System.String | value | |
TableCellAlignment | alignment |