Hi Jason,
I am trying to create a document with a header as well as a watermark.. When I try to create two separate header parts according to the following code,
Relationship relationship = createHeaderPart();
createHeaderReference(relationship);
Relationship relationship1 = Watermark.createHeaderPart(wordMLPackage);
Watermark.createHeaderReference(wordMLPackage, relationship1);
I am getting only the watermark and not the header as the watermark overrides the first header part.. How do I go about this??
Thanks in advance..