iode.Tables.print_tables_as

property Tables.print_tables_as: PrintTablesAs

Whether to print the full definitions, only the titles or the computed values of the IODE tables in the current database.

Parameters:
value: PrintTablesAs

Possible values are: PrintTablesAs.FULL, PrintTablesAs.TITLES, PrintTablesAs.COMPUTED

Examples

>>> from iode import tables, PrintTablesAs
>>> tables.print_tables_as
<PrintTablesAs.FULL: 0>
>>> tables.print_tables_as = PrintTablesAs.TITLES
>>> tables.print_tables_as
<PrintTablesAs.TITLES: 1>
>>> tables.print_tables_as = "COMPUTED"
>>> tables.print_tables_as
<PrintTablesAs.COMPUTED: 2>