Can I control the "Wrap Text" property of a cell using Python+xlwings?
相关问题
- how to define constructor for Python's new Nam
- streaming md5sum of contents of a large remote tar
- How to get the background from multiple images by
- Evil ctypes hack in python
- Correctly parse PDF paragraphs with Python
For the newest xlwings version:
It's currently not implemented but I've opened a feature request here. In the meantime, you can always work around by accessing the underlying COM object on Windows:
Range('A1').xl_range.WrapText = True
or appscript object on Mac:Range('A1').xl_range.wrap_text.set(True)
.