\Kendo\UI\FileManagerContextMenuItem
A PHP class representing the item setting of FileManagerContextMenuItems.
Methods
command
Specifies the command of the item.
Returns
\Kendo\UI\FileManagerContextMenuItem
Parameters
$value string
Example
<?php
$item = new \Kendo\UI\FileManagerContextMenuItem();
$item->command('value');
?>
icon
Specifies the icon of the item.
Returns
\Kendo\UI\FileManagerContextMenuItem
Parameters
$value string
Example
<?php
$item = new \Kendo\UI\FileManagerContextMenuItem();
$item->icon('value');
?>
name
Specifies the name of the item.
Returns
\Kendo\UI\FileManagerContextMenuItem
Parameters
$value string
Example
<?php
$item = new \Kendo\UI\FileManagerContextMenuItem();
$item->name('value');
?>
spriteCssClass
Specifies the spriteCssClass of the item.
Returns
\Kendo\UI\FileManagerContextMenuItem
Parameters
$value string
Example
<?php
$item = new \Kendo\UI\FileManagerContextMenuItem();
$item->spriteCssClass('value');
?>
text
Specifies the text of the item.
Returns
\Kendo\UI\FileManagerContextMenuItem
Parameters
$value string
Example
<?php
$item = new \Kendo\UI\FileManagerContextMenuItem();
$item->text('value');
?>