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