How to Select Multi-Page Annotations in ASP.NET MVC PDF Viewer

14 Aug 20261 minute to read

To select a multi-page TextMarkup annotation as a single annotation in a Syncfusion PDF viewer, you can do so by enabling the EnableMultiPageAnnotation property. By default it is false.

Here is an example of how you can use the EnableMultiPageAnnotation property to select the multi page TextMarkup annotation as a single annotation, export and import multi page annotation:

<div id="e-pv-e-sign-pdfViewer-div">
    @Html.EJS().PdfViewer("pdfviewer").DocumentPath("https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf").EnableMultiPageAnnotation(true).Render()
</div>
<div id="e-pv-e-sign-pdfViewer-div">
    @Html.EJS().PdfViewer("pdfviewer").ServiceUrl(VirtualPathUtility.ToAbsolute("~/PdfViewer/")).DocumentPath("https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf").EnableMultiPageAnnotation(true).Render()
</div>