Hi Chris,
It is basically the same as adding content to a section:
NSection section = nRichTextViewWithCommandBarsControl1.Widget.View.Content.Sections[0];
NHeaderFooter header = new NHeaderFooter();
section.Header = header;
NParagraph par1 = new NParagraph();
NHyperlinkInline hyperlink = new NHyperlinkInline();
hyperlink.Text = "Google";
hyperlink.Hyperlink = new NUrlHyperlink("
https://www.google.com"); par1.Inlines.Add(hyperlink);
header.Blocks.Add(par1);
The only difference is that you need to place the objects in the section header / footer Blocks collection instead of the section blocks. Let us know if you meet any problems or have any questions.
Best Regards,
Nevron Support Team