On 01/22/2017 07:02 PM, MRAB wrote:
On 2017-01-23 00:10, Jim wrote:
Does anyone know if the changes outlined here [1] have been implemented?
Supposedly changes have been made to pyuno to make it more pythonic.
Item 2 Cellranges says that:
cell = sheet.getCellByPosition(cellCol + col, cellRow +
On 2017-01-23 00:10, Jim wrote:
Does anyone know if the changes outlined here [1] have been implemented?
Supposedly changes have been made to pyuno to make it more pythonic.
Item 2 Cellranges says that:
cell = sheet.getCellByPosition(cellCol + col, cellRow + row)
Can be written as:
cell = sheet
Does anyone know if the changes outlined here [1] have been implemented?
Supposedly changes have been made to pyuno to make it more pythonic.
Item 2 Cellranges says that:
cell = sheet.getCellByPosition(cellCol + col, cellRow + row)
Can be written as:
cell = sheet.cellrange[cellRow + row, cellCol