Hi everybody,
how can I collect the styles that are displayed in Word's Navigation View (please check screen-shot)?
I need to provide a (html) view similar to the screen-shot.
Regards,
Zsolt
It is currently Tue Aug 04, 2026 8:14 am
News of Plutext 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 10234 • Total topics 2888 • Total members 2109