Represents a block node that has inline children.
Namespace: Radzen.Blazor.Markdown
Assembly: Radzen.Blazor.dll
public interface IBlockInlineContainerGets the inline children of the block.
public IReadOnlyList<Markdown.Inline> Children { get; }
| Type | Description |
|---|---|
| IReadOnlyList<Markdown.Inline> | Gets the inline children of the block. |
Gets string value of the block.
public string Value { get; }
| Type | Description |
|---|---|
| string | Gets string value of the block. |
Adds an inline child to the block.
public abstract void Add(Markdown.Inline child)
| Type | Name | Description |
|---|---|---|
| Markdown.Inline | child |