\Kendo\UI\PDFViewerDplProcessing
A PHP class representing the dplProcessing setting of PDFViewer.
Methods
download
Specifies the download configuration.
Returns
\Kendo\UI\PDFViewerDplProcessing
Parameters
$value \Kendo\UI\PDFViewerDplProcessingDownload|array
Example - using \Kendo\UI\PDFViewerDplProcessingDownload
<?php
$dplProcessing = new \Kendo\UI\PDFViewerDplProcessing();
$download = new \Kendo\UI\PDFViewerDplProcessingDownload();
$url = 'value';
$download->url($url);
$dplProcessing->download($download);
?>
Example - using array
<?php
$dplProcessing = new \Kendo\UI\PDFViewerDplProcessing();
$url = 'value';
$dplProcessing->download(array('url' => $url));
?>
loadOnDemand
Specifies whether read requests should be sent for each page. Note that on the server the pageField should be nullable.
Returns
\Kendo\UI\PDFViewerDplProcessing
Parameters
$value boolean
Example
<?php
$dplProcessing = new \Kendo\UI\PDFViewerDplProcessing();
$dplProcessing->loadOnDemand(true);
?>
read
Specifies the configuration of the jQuery.ajax to make an HTTP request to the remote service.
Returns
\Kendo\UI\PDFViewerDplProcessing
Parameters
$value \Kendo\UI\PDFViewerDplProcessingRead|array
Example - using \Kendo\UI\PDFViewerDplProcessingRead
<?php
$dplProcessing = new \Kendo\UI\PDFViewerDplProcessing();
$read = new \Kendo\UI\PDFViewerDplProcessingRead();
$dataType = 'value';
$read->dataType($dataType);
$dplProcessing->read($read);
?>
Example - using array
<?php
$dplProcessing = new \Kendo\UI\PDFViewerDplProcessing();
$dataType = 'value';
$dplProcessing->read(array('dataType' => $dataType));
?>
upload
Specifies the configuration of the jQuery.ajax to make an HTTP POST request to the remote service.
Returns
\Kendo\UI\PDFViewerDplProcessing
Parameters
$value \Kendo\UI\PDFViewerDplProcessingUpload|array
Example - using \Kendo\UI\PDFViewerDplProcessingUpload
<?php
$dplProcessing = new \Kendo\UI\PDFViewerDplProcessing();
$upload = new \Kendo\UI\PDFViewerDplProcessingUpload();
$saveField = 'value';
$upload->saveField($saveField);
$dplProcessing->upload($upload);
?>
Example - using array
<?php
$dplProcessing = new \Kendo\UI\PDFViewerDplProcessing();
$saveField = 'value';
$dplProcessing->upload(array('saveField' => $saveField));
?>