\Kendo\UI\EditorResizable

A PHP class representing the resizable setting of Editor.

Methods

content

Sets the HTML content of the EditorResizable.

Returns

EditorResizable

$value string

Example

<?php
$resizable = new \Kendo\UI\EditorResizable();
$resizable->content('<strong>Content</strong>');
?>

max

The maximum height that the editor can be resized to.

Returns

\Kendo\UI\EditorResizable

Parameters

$value float

Example

<?php
$resizable = new \Kendo\UI\EditorResizable();
$resizable->max(1);
?>

min

The minimum height that the editor can be resized to.

Returns

\Kendo\UI\EditorResizable

Parameters

$value float

Example

<?php
$resizable = new \Kendo\UI\EditorResizable();
$resizable->min(1);
?>

toolbar

If resizable is set to true the widget will detect changes in the viewport width and will hide the overflowing controls in the tool overflow popup.

Returns

\Kendo\UI\EditorResizable

Parameters

$value boolean

Example

<?php
$resizable = new \Kendo\UI\EditorResizable();
$resizable->toolbar(true);
?>
In this article
Not finding the help you need?