It is currently Sun Jan 12, 2025 4:09 am
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);
Ftr footerPart = (Ftr) XmlUtils.unmarshalString(footerXML);
Total posts 10116 • Total topics 2845 • Total members 2076