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