OpenOffice pyuno "全选

5 投票
2 回答
1495 浏览
提问于 2025-04-16 11:40

有没有人知道怎么用OO uno桥接API在Calc表格中“全选”?

另外,找到最大使用的行和列号也可以。

我想做的是给电子表格中的所有单元格应用一个格式。

(原因是我将这个表格保存为csv格式,所以如果格式没有足够的小数位,数字就会保存不准确。)

2 个回答

2

我在这一行代码上遇到了一个错误(属性错误):

range.gotoEndOfUsedArea(True)

通过结合以下两个信息:

  1. http://nab.pcug.org.au/transferdemo_oocalc.py
  2. https://wiki.openoffice.org/wiki/Documentation/BASIC_Guide/Cells_and_Ranges

我想出了以下解决方案:

def getLastActiveCell(sheet):
    """returns the last used column and row of the provided sheet 
    (ie the last cell in the range containing something other than '')"""
    #create a cursor for the whole sheet using OO interface XSheetCellRange 
    cursor = sheet.createCursor()
    #goto the last used cell
    cursor.gotoEndOfUsedArea(True)
    #grab that positions "coordinates"
    address = cursor.RangeAddress
    endcol = address.EndColumn
    endrow = address.EndRow
    #and pass them back
    return endcol,endrow

然后你可以像这样在代码中访问这些值:

lastCell = getLastActiveCell(sheetObject)
print lastCell[0] #Column
print lastCell[1] #Row

并创建一个范围

 range = sheetObject.getCellRangeByPosition( 0, 0, lastCell[0], lastCell[1] )

或者进行其他进一步的操作。

2

假设你已经连接上了OpenOffice,并且document是一个已经打开或创建的电子表格。

#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, 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

撰写回答