Skip to main content
A newer version of this page is available. .
Tab

ASPxPopupControlBase.Pinned Property

Gets or sets a value that specifies whether the window is pinned.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(false)]
public virtual bool Pinned { get; set; }

Property Value

Type Default Description
Boolean **false**

true if the window is pinned; otherwise, false.

Remarks

End-users can pin and unpin a window (dock panel) using the pin button (dock panel pin button). Use the Pinned property to specify whether the default popup window (dock panel) is pinned.

To specify the pinned state of the particular popup window, use the PopupWindow.Pinned property.

On the client side, you can control the window pinned state using the ASPxClientPopupControlBase.GetPinned and ASPxClientPopupControlBase.SetPinned methods.

See Also