Class Table
Represents a table in a Markdown document.
Inherited Members
Namespace: Radzen.Blazor.Markdown
Assembly: Radzen.Blazor.dll
Syntax
public class Table : Leaf, INode, IBlockInlineContainer
Constructors
Table()
Represents a table in a Markdown document.
Declaration
public Table()
Properties
Rows
Gets the rows of the table.
Declaration
public IReadOnlyList<TableRow> Rows { get; }
Property Value
| Type | Description |
|---|---|
| IReadOnlyList<TableRow> |
Methods
Accept(INodeVisitor)
Accepts a visitor.
Declaration
public override void Accept(INodeVisitor visitor)
Parameters
| Type | Name | Description |
|---|---|---|
| INodeVisitor | visitor | The visitor to accept. |