\Kendo\UI\ChatToolbarButton
A PHP class representing the button setting of ChatToolbarButtons.
Methods
attr
Defines an object that is applied to the button element as attributes.
Returns
\Kendo\UI\ChatToolbarButton
Parameters
$value ``
iconClass
Defines the icon classes of the span that is rendered in the button.
Returns
\Kendo\UI\ChatToolbarButton
Parameters
$value string
Example
<?php
$button = new \Kendo\UI\ChatToolbarButton();
$button->iconClass('value');
?>
name
Defines the name of the button.
Returns
\Kendo\UI\ChatToolbarButton
Parameters
$value string
Example
<?php
$button = new \Kendo\UI\ChatToolbarButton();
$button->name('value');
?>
text
Defines the text that will be used for the title of the icon button.
Returns
\Kendo\UI\ChatToolbarButton
Parameters
$value string
Example
<?php
$button = new \Kendo\UI\ChatToolbarButton();
$button->text('value');
?>