Skip to main content

ASPxClientPopupControl.GetWindowPinned(window) Method

Returns a value indicating whether the specified window is pinned.

Declaration

GetWindowPinned(
    window: ASPxClientPopupWindow
): boolean

Parameters

Name Type Description
window ASPxClientPopupWindow

An ASPxClientPopupWindow object specifying the popup window.

Returns

Type Description
boolean

true if the window is pinned; otherwise, false.

Remarks

End-users can pin and unpin a window using the pin button. Use the GetWindowPinned method to get a value indicating whether the popup window is pinned. To set the window pin state on the client side, use the ASPxClientPopupControl.SetWindowPinned 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