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

RepositoryItemBlobBaseEdit.PopupSizeable Property

Gets or sets a value specifying whether the editor’s popup window is sizeable.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v19.2.dll

Declaration

[DXCategory("Behavior")]
[DefaultValue(true)]
public virtual bool PopupSizeable { get; set; }

Property Value

Type Default Description
Boolean **true**

true if the editor’s popup window is sizeable; otherwise, false.

Remarks

Use this property to control whether end-users can change the size of the editor’s popup window using the mouse.

If this property is true (the default behavior), the popup window contains a resize grip in its bottom right corner. Users can drag this grip by the mouse to resize the editor’s popup window. Note: each time the popup window opens its size is the same as when it was last closed. To specify its initial size (i.e. the first time it is opened) you should use the RepositoryItemBlobBaseEdit.PopupStartSize property. Bear in mind that users cannot resize the popup window to make its width and/or height less than the default values (200 and 150 pixels respectively).

Set the PopupSizeable property to false to remove the size grip and prevent end-users from changing the popup window size.

Changing the value of this property at runtime raises the RepositoryItem.PropertiesChanged event.

See Also