\Kendo\UI\PDFViewerPdfjsProcessingFile
A PHP class representing the file setting of PDFViewerPdfjsProcessing.
Methods
data
Specifies the data to be passed to the pdfjs processor. Accepts blob, byte array or base64 string.
Returns
\Kendo\UI\PDFViewerPdfjsProcessingFile
Parameters
$value string
Example
<?php
$file = new \Kendo\UI\PDFViewerPdfjsProcessingFile();
$file->data('value');
?>
url
Specifies the url to be passed to the pdfjs processor.
Returns
\Kendo\UI\PDFViewerPdfjsProcessingFile
Parameters
$value string
Example
<?php
$file = new \Kendo\UI\PDFViewerPdfjsProcessingFile();
$file->url('value');
?>