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