\Kendo\UI\UploadFile

A PHP class representing the file setting of UploadFiles.

Methods

extension

The extension of the initial file.

Returns

\Kendo\UI\UploadFile

Parameters

$value string

Example

<?php
$file = new \Kendo\UI\UploadFile();
$file->extension('value');
?>

name

The name of the initial file.

Returns

\Kendo\UI\UploadFile

Parameters

$value string

Example

<?php
$file = new \Kendo\UI\UploadFile();
$file->name('value');
?>

size

The size of the initial file.

Returns

\Kendo\UI\UploadFile

Parameters

$value float

Example

<?php
$file = new \Kendo\UI\UploadFile();
$file->size(1);
?>
In this article
Not finding the help you need?