Hi, I need a bit of help. It’s probably really easy but I can’t find any examples showing it.
I need to add text to an existing page header.
This moves me to the start:
DocBuilder1.MoveToHeaderFooter(HeaderFooterType.HeaderPrimary);
And this inserts text at the top of the header:
DocBuilder1.Writeln(“Extra text added to the header”);
But I need the text to be added after the text that is already there.
How do I move to the end of the header so I can insert text there?
Thanks
Karin