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