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