API Reference

Class

ReaderTableExport

Namespace OfficeIMO.Reader
Assembly OfficeIMO.Reader
Modifiers static

Deterministic text exporters for ReaderTable instances.

Inheritance

  • Object
  • ReaderTableExport

Methods

public static String ToCsv(ReaderTable table) #
Returns: String

Serializes a reader table as RFC 4180-style CSV with CRLF row separators.

Parameters

table OfficeIMO.Reader.ReaderTable requiredposition: 0
Table to serialize.
public static String ToJson(ReaderTable table, Boolean indented = false) #
Returns: String

Serializes a reader table as deterministic JSON with normalized row width.

Parameters

table OfficeIMO.Reader.ReaderTable requiredposition: 0
Table to serialize.
indented System.Boolean = false optionalposition: 1
When true, writes indented JSON for diagnostics and fixtures.
public static String ToMarkdownTable(ReaderTable table) #
Returns: String

Serializes a reader table as a GitHub-style Markdown table.

Parameters

table OfficeIMO.Reader.ReaderTable requiredposition: 0
Table to serialize.