< Back


MarkdownHorizontalRule

Namespace: Markdown

Markdown horizontal rule.

public class MarkdownHorizontalRule : IMarkdownBlockElement

Inheritance ObjectMarkdownHorizontalRule
Implements IMarkdownBlockElement

Properties

Char

Gets or sets the horizontal rule character.

public char Char { get; set; }

Property Value

Char
Horizontal rule character.

Constructors

MarkdownHorizontalRule()

Initializes a new instance of the MarkdownHorizontalRule class.

public MarkdownHorizontalRule()

MarkdownHorizontalRule(Char)

Initializes a new instance of the MarkdownHorizontalRule class.

public MarkdownHorizontalRule(char char)

Parameters

char Char
The horizontal rule character.

Methods

ToString()

Returns a string that represents the current markdown horizontal rule.

public string ToString()

Returns

String
A string that represents the current markdown horizontal rule.


< Back