Enum PlainTextTableStyle
How a table is rendered into text.
public enum PlainTextTableStyle
Fields
TabSeparated = 0Cells separated by a tab, one line per row. The default, because it is the form a spreadsheet and a database import both read back.
Aligned = 1Cells padded with spaces to a common column width. Readable in a monospace font and unparseable by anything.
Paragraphs = 2The table's text as ordinary paragraphs, one per cell, with no grid at all.
Drop = 3The table is dropped and reported.