< Back


MarkdownTextElement

Namespace: Markdown

Markdown text element.

public abstract class MarkdownTextElement

Inheritance ObjectMarkdownTextElement

Properties

Text

Gets or sets the text.

public string Text { get; set; }

Property Value

String
The text or a string that represents the markdown inline element.

Constructors

MarkdownTextElement(String)

Initializes a new instance of the MarkdownTextElement class.

public MarkdownTextElement(string text)

Parameters

text String
The text.

MarkdownTextElement(MarkdownInlineElement)

Initializes a new instance of the MarkdownTextElement class.

public MarkdownTextElement(MarkdownInlineElement inlineElement)

Parameters

inlineElement MarkdownInlineElement
The text as markdown inline element.


< Back