[gelöst] Hochstellen einer Zahl? (Fußnote)
Verfasst: Di, 31.05.2011 14:02
Hier die Lösung, um eine Zahl hochzustellen.
Ich erstelle einen Textcursor, gehe an das Ende vom Text in der Zelle, füge eine 1 ein und stelle diese Hoch.
lg
Mike
Ich erstelle einen Textcursor, gehe an das Ende vom Text in der Zelle, füge eine 1 ein und stelle diese Hoch.
Code: Alles auswählen
Sub FuZeile
Formate = oDoc.sheets.getByName("Angebot").getCellByPosition(3,9)
textcur = Formate.gettext().createtextcursor()
textcur.gotoend(false)
textcur.String = "1"
textcur.goleft(1,true)
textcur.CharEscapement = 33
textcur.CharEscapementHeight = 80
End Sub
Mike