< Back


MarkdownTableRow

Namespace: Markdown

Markdown table row.

public class MarkdownTableRow

Inheritance ObjectMarkdownTableRow

Properties

Cells

Gets the cells.

public MarkdownInlineElement[] Cells { get; }

Property Value

MarkdownInlineElement[]
The cells.

Constructors

MarkdownTableRow(IEnumerable<MarkdownInlineElement>)

Initializes a new instance of the MarkdownTableRow class.

public MarkdownTableRow(IEnumerable<MarkdownInlineElement> cells)

Parameters

cells IEnumerable<MarkdownInlineElement>
The cells.

MarkdownTableRow(MarkdownInlineElement[])

Initializes a new instance of the MarkdownTableRow class.

public MarkdownTableRow(MarkdownInlineElement[] cells)

Parameters

cells MarkdownInlineElement[]
The cells.

MarkdownTableRow(IEnumerable<String>)

Initializes a new instance of the MarkdownTableRow class.

public MarkdownTableRow(IEnumerable<string> cells)

Parameters

cells IEnumerable<String>
The cells.

MarkdownTableRow(String[])

Initializes a new instance of the MarkdownTableRow class.

public MarkdownTableRow(String[] cells)

Parameters

cells String[]
The cells.

MarkdownTableRow(Int32)

Initializes a new instance of the MarkdownTableRow class.

public MarkdownTableRow(int capacity)

Parameters

capacity Int32
The capacity.

Methods

ToString()

Returns a string that represents the current markdown table row.

public string ToString()

Returns

String
A string that represents the current markdown table row.


< Back