5 Answers, 1 is accepted

You can achieve this by drawing the headers and footers with FixedContentEditor instances for each page after all pages are created.
public
static
RadFixedDocument CreateDocumentWithHeadersAndFooters()
{
RadFixedDocument document =
new
RadFixedDocument();
using
(RadFixedDocumentEditor documentEditor =
new
RadFixedDocumentEditor(document))
{
GenerateDocumentContentWithoutHeadersAndFooters(documentEditor);
}
int
numberOfPages = document.Pages.Count;
for
(
int
pageIndex = 0; pageIndex < numberOfPages; pageIndex++)
{
int
pageNumber = pageIndex + 1;
FixedContentEditor pageEditor =
new
FixedContentEditor(document.Pages[pageIndex]);
DrawHeaderAndFooter(pageEditor, pageNumber, numberOfPages);
}
return
document;
}
We have a feature request to provide an API for easily drawing such content: Implement headers and footers in RadFixedDocumentEditor, which you can subscribe to by clicking the Follow button and vote for its implementation to increase the priority of the task.
Hope this is helpful.
Regards,
Martin
Progress Telerik
Hi Gary,
Removing the signatures after editing a signed document is the expected behavior and I am afraid the only option is to sign it again after you finish the editing.
As for removing fillable form data, it is not expected and I have had no success with reproducing it on my side. Could I ask you to send us a sample project or detailed steps of how this behavior can be reproducible?

Hi Martin,
That was very helpful.

Hello Zorica,
In this method, you can use the API of the FixedContentEditor to draw various elements on the page. An example of this is available in our SDK repository as well: document-processing-sdk/PdfProcessing/DrawHeaderFooter at master ยท telerik/document-processing-sdk
I hope this helps. Should you have any other questions do not hesitate to ask.
Regards,
Dimitar
Progress Telerik
Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.