Hi,
I m trying to make footer right justify but unable to find any reference for this scenario. Here is my code
Telerik.Windows.Documents.Flow.FormatProviders.Pdf.PdfFormatProvider formatProvider = new Telerik.Windows.Documents.Flow.FormatProviders.Pdf.PdfFormatProvider();
int numberOfPages = formatProvider.ExportToFixedDocument(doc).Pages.Count;
RadFlowDocumentEditor editor = new RadFlowDocumentEditor(doc);
editor.MoveToParagraphStart(doc.Sections(0).Footers.Add().Blocks.AddParagraph());
editor.InsertText("Page ");
editor.InsertField("PAGE", "Page number will be evaluated on each page footer.");
editor.InsertText(" of ");
editor.InsertField("NUMPAGES", numberOfPages.ToString());
Any help would be greatly appreciated.