\Kendo\UI\WindowTitle
A PHP class representing the title setting of Window.
Methods
encoded
Specifies whether the title text will be encoded.
Returns
\Kendo\UI\WindowTitle
Parameters
$value boolean
Example
<?php
$title = new \Kendo\UI\WindowTitle();
$title->encoded(true);
?>
text
The text in the title bar of the Window.
Returns
\Kendo\UI\WindowTitle
Parameters
$value string
Example
<?php
$title = new \Kendo\UI\WindowTitle();
$title->text('value');
?>