Document Editor supports headers and footers in its document. Each section in the document can have the following types of headers and footers:
You can define this by setting format properties of the corresponding section using the following sample code.
//Defines whether different header footer is required for first page of the section
documenteditor.selection.sectionFormat.differentFirstPage = true;
//Defines whether different header footer is required for odd and even pages in the section
documenteditor.selection.sectionFormat.differentOddAndEvenPages = true;
Double click in header or footer region to move the selection into it. You can also do this by using the following code.
documenteditor.selection.goToHeader();
documenteditor.selection.goToFooter();
You can define the distance of header region content from the top of the page. Refer to the following sample code.
documenteditor.selection.sectionFormat.headerDistance= 36;
Same way, you can define the distance of footer region content from the bottom of the page. Refer to the following sample code.
documenteditor.selection.sectionFormat.footerDistace=36;
Move the selection to the document body from header or footer region by double clicking or tapping the document area. You can also perform this by using the following sample code.
documenteditor.selection.closeHeaderFooter()