PDFViewerDplProcessingDownloadSettingsBuilder
Methods
Url(System.String)
Specifies the download action url that will be navigated to.
Parameters
value - System.String
The value that configures the url.
Example
@(Html.Kendo().PDFViewer()
.Name("pdfviewer")
.DplProcessing(dpl => {
dpl.Download(r => r.Url(Url.Action("DownloadPdf", "PdfViewer")));
})
)