Skip to main content

ASPxClientPopupControlBase.SetPinned(value) Method

Sets a value indicating whether the window is pinned.

Declaration

SetPinned(
    value: boolean
): void

Parameters

Name Type Description
value boolean

true, to pin the window; otherwise, false.

Remarks

End-users can pin and unpin a window using the pin button. Use the SetPinned method to programmatically pin and unpin the default popup window. To get the window pin state on the client side, use the ASPxClientPopupControlBase.GetPinned method.

To specify the pin state of the particular popup window, use the ASPxClientPopupControl.GetWindowPinned and ASPxClientPopupControl.SetWindowPinned methods.

On the server side, the window pin state is controlled by the ASPxPopupControlBase.Pinned property.

See Also