EditorResizableSettingsBuilder
Defines the fluent API for configuring the EditorResizableSettings settings.
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.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))
)
Toolbar(System.Boolean)
If resizable is set to true the Editor 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.
Example
@( Html.Kendo().Editor()
.Name("Editor")
.Resizable(resizable => resizable.Toolbar(true))
)