Variable DoubleOutlineTableStyleConst

DoubleOutlineTableStyle: Partial<Readonly<TableStyle>> = ...

Use a double line for the outline around the table.

rowBorder: false
columnBorder: false
╔══════════════╗
║ Hdr 1  Hdr 2 ║
╟──────────────╢
║ foo        0 ║
║ bar       12 ║
║ baz      345 ║
╚══════════════╝

rowBorder: true
columnBorder: false
╔══════════════╗
║ Hdr 1  Hdr 2 ║
╠══════════════╣
║ foo        0 ║
╟──────────────╢
║ bar       12 ║
╟──────────────╢
║ baz      345 ║
╚══════════════╝

rowBorder: false
columnBorder: true
╔═══════╤═══════╗
║ Hdr 1 │ Hdr 2 ║
╟───────┼───────╢
║ foo   │     0 ║
║ bar   │    12 ║
║ baz   │   345 ║
╚═══════╧═══════╝

rowBorder: true
columnBorder: true
╔═══════╤═══════╗
║ Hdr 1 │ Hdr 2 ║
╠═══════╪═══════╣
║ foo   │     0 ║
╟───────┼───────╢
║ bar   │    12 ║
╟───────┼───────╢
║ baz   │   345 ║
╚═══════╧═══════╝

Generated using TypeDoc