ASPxPopupControlBase.MaxHeight Property
Gets or sets the maximum height of a control’s window.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Default | Description |
---|---|---|
Unit | String.Empty | A Unit object that defines the maximum height of a control’s window. |
Remarks
If window resizing is allowed (the ASPxPopupControlBase.AllowResize property is set to true
) end-users can change a window’s size. You can use the ASPxPopupControlBase.MinHeight, MaxHeight, ASPxPopupControlBase.MinWidth, and ASPxPopupControlBase.MaxWidth properties to specify window size constraints, limiting the window resizing capability of end-users.
Note
For ASPxPopupControl only:
To specify the maximum height to which an end-user can resize the particular window, use the PopupWindow.MaxHeight property.
Example
This example illustrates how to customize an ASPxPopupControl’s setting container using particular properties.
<dx:ASPxButton ID="btn" runat="server" Text="Show PopUp" AutoPostBack="false">
<ClientSideEvents Click="function (s,e) {popup.Show();}" />
</dx:ASPxButton>
<dx:ASPxPopupControl ID="ASPxPopupControl1" runat="server" ClientInstanceName="popup" PopupElementID="btn"
DragElement="Window" HeaderText="Directed by: Ridley Scott" MaxHeight="600px"
MaxWidth="600px" MinHeight="100px" MinWidth="210px" CloseAction="MouseOut" PopupAction="MouseOver"
AppearAfter="4000" DisappearAfter="4000" Top="20" Left="80" AllowResize="true" AllowDragging="true"
ResizingMode="Postponed" SaveStateToCookies="true">
<CloseButtonImage Url="Images/close.png" AlternateText="No image" />
<ContentStyle ForeColor="#666677" Font-Names="Tahoma" Font-Size="10px" />
<ContentCollection>
<dx:PopupControlContentControl runat="server">
<div>
When a Roman general is betrayed and his family murdered by a corrupt prince, he
comes to Rome as a gladiator to seek revenge.</div>
</dx:PopupControlContentControl>
</ContentCollection>
</dx:ASPxPopupControl>