xlwings是否支持“Wrap Text”属性?

我可以使用Python + xlwings控制单元格的“Wrap Text”属性吗?

目前尚未实现,但是我在这里打开了一个function请求。 与此同时,您可以通过访问Windows上的底层COM对象来解决这个问题: Range('A1').xl_range.WrapText = True Mac上的Range('A1').xl_range.WrapText = True或者appscript对象: Range('A1').xl_range.wrap_text.set(True)

对于最新的xlwings版本:

 import xlwings as xw wb1 = xw.Book('Book1.xlsm').sheets['Sheet1'] wb1.range('A1').value="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: " wb1.range('A1').WrapText = True