API Reference

Class

OdtTable

Namespace OfficeIMO.OpenDocument
Assembly OfficeIMO.OpenDocument
Modifiers sealed

An XML-backed ODT table.

Inheritance

  • Object
  • OdtTable

Usage

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

Returned or exposed by

Methods

public OdtTableRow AddRow(Nullable<Int32> columns = null) #
Returns: OdtTableRow

Adds a row with the inferred or supplied column count.

Parameters

columns System.Nullable{System.Int32} = null optionalposition: 0
public OdtTableCell Cell(Int32 row, Int32 column) #
Returns: OdtTableCell

Gets a zero-based cell.

Parameters

row System.Int32 requiredposition: 0
column System.Int32 requiredposition: 1
public OdtTableCell Merge(Int32 row, Int32 column, Int32 rowSpan, Int32 columnSpan) #
Returns: OdtTableCell

Merges a rectangular range and emits covered cells for non-anchor positions.

Parameters

row System.Int32 requiredposition: 0
column System.Int32 requiredposition: 1
rowSpan System.Int32 requiredposition: 2
columnSpan System.Int32 requiredposition: 3

Properties

public String Name { get; set; } #

Table name.

public IReadOnlyList<OdtTableRow> Rows { get; } #

Rows in source order.