Reputation: 810
I am working with an excel file from xlwings and I want to change the width and height of each cell from code, ideally to create a perfect square, is that possible?
In the documentation, I found a height attribute when using range:
ws1.range('A1').height
but it is read only, so that doesn't help.
I know there is a autofit method in xlwings that works perfectly well to set the width/height of the cell, so influencing those attributes shold be doable, or am I missing something?
Upvotes: 1
Views: 3945