OfficeIMO

API Reference

Class

TableCell

Namespace OfficeIMO.Markdown
Assembly OfficeIMO.Markdown
Modifiers sealed

Typed table cell containing one or more markdown blocks.

Inheritance

Constructors

public TableCell(IEnumerable<IMarkdownBlock> blocks = null) #

Creates a typed table cell.

Parameters

blocks System.Collections.Generic.IEnumerable{OfficeIMO.Markdown.IMarkdownBlock} = null optionalposition: 0

Properties

public List<IMarkdownBlock> Blocks { get; } #

Structured cell content.

SyntaxChildren #

Owned syntax nodes for the structured cell body.

public Boolean IsHeader { get; set; } #

Whether this cell belongs to the header row.

public Int32 RowIndex { get; set; } #

Zero-based data-row index for body cells; -1 for header cells.

public Int32 ColumnIndex { get; set; } #

Zero-based column index within the row.

public String Markdown { get; } #

Markdown representation of the full cell body.