PdfSaveOptions.CreateNoteHyperlinks

PdfSaveOptions CreateNoteHyperlinks property. Specifies whether to convert footnote/endnote references in main text story into active hyperlinks. When clicked the hyperlink will lead to the corresponding footnote/endnote. Default is false.

Specifies whether to convert footnote/endnote references in main text story into active hyperlinks. When clicked the hyperlink will lead to the corresponding footnote/endnote. Default is false.

public bool CreateNoteHyperlinks { get; set; }

Examples

Shows how to generate active hyperlinks for footnotes.

PdfSaveOptions pdfSaveOptions = new PdfSaveOptions();
pdfSaveOptions.CreateNoteHyperlinks = true;

Converter.Create()
    .From(MyDir + "Simple.docx")
    .To(ArtifactsDir + "PdfSaveOptions.CreateNoteHyperlinks.pdf", pdfSaveOptions)
    .Execute();

See Also