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