10.3.10 GetRow und getColumn
Liest die aktuelle Zeile und Spalte aus.
Achtung der Index beginnt bei 0. A1 = 0,0


function getRow as integer
            oDoc=ThisComponent
          If oDoc.SupportsService("com.sun.star.sheet.SpreadsheetDocument") Then
       oCelle=oDoc.getCurrentSelection().getCellAddress()
       getRow=oCelle.Row
       end if
end function

function getColumn as integer
       oDoc=ThisComponent
     If oDoc.SupportsService("com.sun.star.sheet.SpreadsheetDocument") Then
       oCelle=oDoc.getCurrentSelection().getCellAddress()
       getColumn=oCelle.column
       end if
end function