Represents a table row in a Markdown table.
Namespace: Radzen.Blazor.Markdown
Assembly: Radzen.Blazor.dll
public class TableRow : Markdown.INodeGets the cells of the table row.
public IReadOnlyList<Markdown.TableCell> Cells { get; }
| Type | Description |
|---|---|
| IReadOnlyList<Markdown.TableCell> | Gets the cells of the table row. |
public virtual void Accept(Markdown.INodeVisitor visitor)
| Type | Name | Description |
|---|---|---|
| Markdown.INodeVisitor | visitor |
Adds a cell to the table row.
public void Add(string value, Markdown.TableCellAlignment alignment)
| Type | Name | Description |
|---|---|---|
| string | value | The value of the cell. |
| Markdown.TableCellAlignment | alignment | The alignment of the cell. |