ASPxClientPopupControl.SetWindowMaximized(window, value) Method
In This Article
Sets a value indicating whether the specified window is maximized.
#Declaration
TypeScript
SetWindowMaximized(
window: ASPxClientPopupWindow,
value: boolean
): void
#Parameters
Name | Type | Description |
---|---|---|
window | ASPx |
An ASPx |
value | boolean |
|
#Remarks
End-users can maximize and recover a window using the maximize button. Use the client-side SetWindowMaximized method to programmatically maximize and recover the popup window. To get the window maximize state on the client side, use the ASPxClientPopupControl.GetWindowMaximized method.
To specify the maximize state of the default popup window, use the ASPxClientPopupControlBase.GetMaximized and ASPxClientPopupControlBase.SetMaximized methods.
On the server side, the window maximize state is controlled by the PopupWindow.Maximized property.
See Also