Hi Oliver,

Oliver Brinzing schrieb:
Hi,

I am missing the ParaStyleName Property inside texttable textranges:

REM  *****  BASIC  *****
OPTION EXPLICIT

Sub Main

        Dim oDoc as Object
        Dim oTable as Object
        Dim oRange as Object
        
        oDoc = ThisComponent
        
        ' ok ...
        msgbox oDoc.getText().getStart().ParaStyleName

        oTable = oDoc.getTextTables().getByName("Tabelle1")
        oRange = oTable.getCellRangeByPosition(0,1,4,1)
        ' will fail using OO 2.0.3 ... works with SO 7.0 ...
        msgbox oRange.ParaStyleName
        
End Sub

should I submit an issue ?

Oliver

Hint (XTextTableCursor):
http://api.openoffice.org/servlets/BrowseList?list=dev&by=thread&from=1206154

Regards

Peter

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to