\Kendo\UI\PDFViewerDplProcessingRead
A PHP class representing the read setting of PDFViewerDplProcessing.
Methods
dataType
The type of result expected from the server. Used values are "json" and "jsonp". The PDFViewer expects a json to render the geometries.
Returns
\Kendo\UI\PDFViewerDplProcessingRead
Parameters
$value string
Example
<?php
$read = new \Kendo\UI\PDFViewerDplProcessingRead();
$read->dataType('value');
?>
pageField
Specifies the page field parameter submitted to the read url. It is used in scenario with loadOnDemand when requests are sent for each page.
Returns
\Kendo\UI\PDFViewerDplProcessingRead
Parameters
$value string
Example
<?php
$read = new \Kendo\UI\PDFViewerDplProcessingRead();
$read->pageField('value');
?>
type
Specifies the type of the request.
Returns
\Kendo\UI\PDFViewerDplProcessingRead
Parameters
$value string
Example
<?php
$read = new \Kendo\UI\PDFViewerDplProcessingRead();
$read->type('value');
?>
url
Specifies the url to which the request is sent.
Returns
\Kendo\UI\PDFViewerDplProcessingRead
Parameters
$value string
Example
<?php
$read = new \Kendo\UI\PDFViewerDplProcessingRead();
$read->url('value');
?>