Table
Create a table with a default name in the active session.
Syntax
tab=Table()
Arguments
- caption
- The table caption.
- csvFile
- The path to the CSV file.
- maxColumns
- The number of maximum columns where to split; default is 0.
- maxRows
- The number of the maximum rows where to split; default is 0.
- name
- The table name.
- session
- The session where the table is located (read only).
- setAttributes()
- Set multiple attributes simultaneously.
- split
- Turn auto split on/off.
- splitBy
- Split by rows and columns.
- stretch
- Stretch the table to fill the available table width.
Example
table = Table()
table.caption = 'Table caption'
table.csvFile = path5
table.split=True
table.maxColumns=5
table.maxRows=9