SlideTable
Create a slide table in the active report session.
Syntax
sltab=SlideTable(slide)
Arguments
- caption
- The slide table caption.
- csvFile
- The path to the CSV file.
- height
- The slide image height value as a percentage.
- maxColumns
- The number of maximum columns where to split; default is 0.
- maxRows
- The number of maximum rows where to split; default is 0.
- name
- The slide table name.
- position
- The slide table position as a list
[<x>,<y>,<width>,<height>]
. - session
- The active report session. (Read only)
- setAttributes()
- Set multiple attributes simultaneously.
- split
- Turn auto split on/off.
- splitBy
- Split by rows/columns.
- width
- The slide table width value as a percentage.
- x
- The slide table x value of the upper left corner as a percentage.
- y
- The slide table y value of the upper left corner as a percentage.
Example
table = Table()
table.caption = 'Table caption'
table.csvFile = path5
table.split=True
table.maxColumns=5
table.maxRows=9
table.stretch