python – OpenOffice pyuno“全选”

前端之家收集整理的这篇文章主要介绍了python – OpenOffice pyuno“全选”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

有谁知道如何使用OO uno bridge api在Calc表中“全选”?

或者,找到最大使用的行和列号将起作用.

我想要做的是将格式应用于电子表格中的所有单元格.

(原因是我将工作表保存为csv,因此除非格式提供足够的小数位,否则数字不会准确保存.)

最佳答案
假设您已连接到OpenOffice,文档是已打开或创建的电子表格.

#get the sheet you want to work with,I'm just going to grab the first sheet
sheets = document.getSheets().createEnumeration()
sheet = sheets.nextElement()

#start with a range on the first cell
range = sheet.getCellRangeByPosition( 0,0 )

#expand to full extend of the used area
range.gotoEndOfUsedArea( True ) #true for expand selection

#no do whatever formatting things you want to do
原文链接:https://www.f2er.com/python/439112.html

猜你在找的Python相关文章