Hello,
Is there a way to put custom properties on Runs? I mean some properties not visible when reading the document in MS-Word but stored internally.
I’d like to write something like:
Run run = new Run(doc);
run.setT…...setProperty("A numeric value", 3); After saving the...println(run.getProperty("A numeric value")); // Should print "3"...