Base class for inline elements that contain other inline elements.
Object
Namespace: Radzen.Blazor.Markdown
Assembly: Radzen.Blazor.dll
public abstract class InlineContainer : Markdown.Inline, Markdown.INodeBase class for inline elements that contain other inline elements.
protected InlineContainer()Gets the children of the container.
public IReadOnlyList<Markdown.Inline> Children { get; }
| Type | Description |
|---|---|
| IReadOnlyList<Markdown.Inline> | Gets the children of the container. |
Appends a child to the container.
public void Add(Markdown.Inline node)
| Type | Name | Description |
|---|---|---|
| Markdown.Inline | node | The child to add. |