Represents a block node that has inline children.
Namespace: Radzen.Documents.Markdown
Assembly: Radzen.Blazor.dll
public interface IBlockInlineContainerGets the inline children of the block.
public IReadOnlyList<Documents.Markdown.Inline> Children { get; }
| Type | Description |
|---|---|
| IReadOnlyList<Documents.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(Documents.Markdown.Inline child)
| Type | Name | Description |
|---|---|---|
| Documents.Markdown.Inline | child |