Re: Farbige Zeilen Formulartabellen
Verfasst: Fr, 02.03.2012 09:20
Bin nicht sicher, aber ich denke da geht nichts.
deutsches Forum rund um Apache OpenOffice und LibreOffice
http://de.openoffice.info/
Code: Alles auswählen
Sub Main
textcursor = thiscomponent.sheets(0).Drawpage.forms(0).getbyindex(0).getText.createtextcursor()
textcursor.gotoStart(false)
textcursor.goright(3,true)
textcursor.CharColor = rgb(255,0,0)
msgbox "Markierter Text: " & textcursor.String & chr(13) & "Farbe: " & textcursor.CharColor
End Sub