viewObject
Defines the page surface options. This setting is available only for DPL Processing. The page render a drawing Surface and all of its configuration options could be defined.
Example
pseudo
<div id="pdfviewer"></div>
<script type="module">
$("#pdfviewer").kendoPDFViewer({
view: {
type: "svg"
},
dplProcessing: {
read: {
url: "/api/pdfviewer/read"
}
}
});
</script>
In this article