I have a Open Office Writer document with math formulas (com.sun.star.formula.FormulaProperties) and i want to make a macro that replace that formula objects with its string contents.
I am very novice!
I can reach the formula objects with
Dim Objs As Object: Objs=ThisComponent.getEmbeddedObjects()
and its string contents with
Objs(i).Model.Formula
But I can not replace each other inside document.
May be so?