Skip to main content

RepositoryItemBlobBaseEdit.PopupStartSize Property

OBSOLETE

Use the PopupFormSize property instead.

Gets or sets the size the editor’s popup window should have when first opened.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[Browsable(false)]
[EditorBrowsable(EditorBrowsableState.Never)]
[Obsolete("Use the PopupFormSize property instead.")]
public virtual Size PopupStartSize { get; set; }

Property Value

Type Description
Size

A Size structure representing the size of the popup window on its first occurrence.

Remarks

Use the PopupStartSize property to control the initial width and height of the BLOB editor’s popup window. Changing this property setting at runtime only has an effect before the popup window is first opened.

By default, the PopupStartSize property sets the width and height of the popup window to 200 and 150 pixels respectively. Bear in mind that these default values represent the minimal size the popup window can have during resizing.

Note: when the RepositoryItemBlobBaseEdit.PopupSizeable property is set to false, the size grip is hidden and window resizing is not allowed.

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

See Also