EditorResizableSettingsBuilder
Methods
Content(System.Boolean)
If enabled, the editor renders a resize handle to allow users to resize it.
Parameters
value - System.Boolean
The value that configures the content.
Example
@( Html.Kendo().Editor()
.Name("Editor")
.Resizable(resizable => resizable.Content(true))
)
Min(System.Action)
The minimum height that the editor can be resized to. If set to an object the user can restrict both min width and height values.
Parameters
configurator - System.Action<EditorResizableMinSettingsBuilder>
The action that configures the min.
Max(System.Action)
The maximum height that the editor can be resized to. If set to an object the user can restrict both max width and height values.
Parameters
configurator - System.Action<EditorResizableMaxSettingsBuilder>
The action that configures the max.
Toolbar(System.Boolean)
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.
Parameters
value - System.Boolean
The value that configures the toolbar.
Min(System.Double)
Defines the minimum height that the editor can be resized to.
Parameters
value - System.Double
The value that configures the min.
Example
@( Html.Kendo().Editor()
.Name("Editor")
.Resizable(resizable => resizable.Min(100))
)
Max(System.Double)
Defines the maximum height that the editor can be resized to.
Parameters
value - System.Double
The value that configures the max.
Example
@( Html.Kendo().Editor()
.Name("Editor")
.Resizable(resizable => resizable.Max(600))
)