I work with python 2.7 and using python pptx.
I add a table to my slide, and need to get the table overall width.
I found here the _column attribute width, and try to use it, for example with that code
for col in table._column:
yield col.width
and get the following error:
AttributeError: 'Table' object has no attribute '_column'
I need to get the table width (or the columns width and sum it). ideas?
Thanks!