LO Basic get current row

I have a VBA macro that works quite well and I thought I would convert it to work in LibreOffice just for the fun of it. The original code took less than four hours of total development time. I have put at least four time that into trying to find out how to determine the current row in LibreOffice. Can someone answer that and point me to accurate documentation of LO Basic with examples?

Hi, slink9 .

Do you want to know how to get the address of current cell with LibreOffice Basic macro ?

If so, yow use getRangeAddress() or getCellAddress() method.

You can see the sample codes the following URL;

URL : http://openoffice3.web.fc2.com/OOoBasic_Calc.html#OOoCCA01a

[ Explain ]

Current Cell : A10 in Sheet2 ⇔ (0,9) / Sheet No = 1

getRangeAddress() : Current CellのAddress取得(1) ⇔ Get the address of current cell(1)

getCellAddress() : Current CellのAddress取得(2) ⇔ Get the address of current cell(2)