It is currently Sun Apr 27, 2025 6:04 pm
mmoselhy wrote:Can I get the style of text object directly or can I get the paragraph for text object?
or should I traverse and keep the paragraph for each text to get the style from ?
mmoselhy wrote:also, sometimes ...
mmoselhy wrote:Can I get flow chart objects information ?
mmoselhy wrote:What about comments and bookmarks in the word document?
DocumentSettingsPart dsp = documentPart.getDocumentSettingsPart();
CTSettings objCTSettings = dsp.getJaxbElement();
ObjectFactory factory = Context.getWmlObjectFactory();
CTView ctView = factory.createCTView();
ctView.setVal(STView.PRINT);
objCTSettings.setView(ctView);
BooleanDefaultTrue b = new BooleanDefaultTrue();
b.setVal(true);
objCTSettings.setUpdateFields(b);
dsp.setJaxbElement(objCTSettings);
documentPart.addTargetPart(dsp);
Total posts 10160 • Total topics 2859 • Total members 2089