\Kendo\UI\EditorResizableMax
A PHP class representing the max setting of EditorResizable.
Methods
maxHeight
The maximum height that the editor can be resized to.
Returns
\Kendo\UI\EditorResizableMax
Parameters
$value float
Example
<?php
$max = new \Kendo\UI\EditorResizableMax();
$max->maxHeight(1);
?>
maxWidth
The maximum width that the editor can be resized to.
Returns
\Kendo\UI\EditorResizableMax
Parameters
$value float
Example
<?php
$max = new \Kendo\UI\EditorResizableMax();
$max->maxWidth(1);
?>