API Reference

Class

TableRow

Namespace OfficeIMO.Markdown
Assembly OfficeIMO.Markdown
Modifiers sealed

Typed table row containing header or body cells.

Inheritance

Usage

This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.

Constructors

public TableRow(IEnumerable<TableCell> cells, Boolean isHeader, Int32 rowIndex) #

Creates a typed table row.

Parameters

cells System.Collections.Generic.IEnumerable{OfficeIMO.Markdown.TableCell} requiredposition: 0
isHeader System.Boolean requiredposition: 1
rowIndex System.Int32 requiredposition: 2

Methods

public TableCell GetCell(Int32 columnIndex) #
Returns: TableCell

Gets a cell by zero-based column index.

Parameters

columnIndex System.Int32 requiredposition: 0

Properties

public IReadOnlyList<TableCell> Cells { get; } #

Cells in this row, preserving document column order.

public Boolean IsHeader { get; } #

Whether this is the table header row.

public Int32 RowIndex { get; } #

Zero-based body row index, or -1 for the header row.