ASPxClientPopupControl.SetWindowMaximized(window, value) Method
Sets a value indicating whether the specified window is maximized.
Declaration
SetWindowMaximized(
window: ASPxClientPopupWindow,
value: boolean
): void
Parameters
Name | Type | Description |
---|---|---|
window | ASPxClientPopupWindow | An ASPxClientPopupWindow object specifying the popup window. |
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