Kendo.Mvc.UI.Fluent.WindowResizingSettingsBuilder
Defines the fluent API for configuring the Kendo Window resizing settings
Methods
Enabled(System.Boolean)
Enables or disables the resizing.
Example (ASPX)
<%= Html.Kendo().Window()
.Name("Window")
.Resizable(x => x.Enabled(true))
%>
MinWidth(System.Int32)
Sets the min width.
Example (ASPX)
<%= Html.Kendo().Window()
.Name("Window")
.Resizable(x => x.MinWidth(100))
%>
MaxWidth(System.Int32)
Sets the max width.
Example (ASPX)
<%= Html.Kendo().Window()
.Name("Window")
.Resizable(x => x.MaxWidth(100))
%>
MinHeight(System.Int32)
Sets the min height.
Example (ASPX)
<%= Html.Kendo().Window()
.Name("Window")
.Resizable(x => x.MinHeight(100))
%>
MaxHeight(System.Int32)
Sets the max height.
Example (ASPX)
<%= Html.Kendo().Window()
.Name("Window")
.Resizable(x => x.MaxHeight(100))
%>
MaxHeight(System.String)
The maximum height (in pixels) that may be achieved by resizing the window.
Parameters
value System.String
The value that configures the maxheight.
MaxWidth(System.String)
The maximum width (in pixels) that may be achieved by resizing the window.
Parameters
value System.String
The value that configures the maxwidth.
MinHeight(System.String)
The minimum height (in pixels) that may be achieved by resizing the window.
Parameters
value System.String
The value that configures the minheight.
MinWidth(System.String)
The minimum width (in pixels) that may be achieved by resizing the window.
Parameters
value System.String
The value that configures the minwidth.