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

RepositoryItemMRUEdit.ImmediatePopup Property

Gets or sets a value that specifies whether the popup window is displayed immediately after an end-user has typed a character in the edit box.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v18.2.dll

Declaration

[DXCategory("Behavior")]
[DefaultValue(true)]
[SmartTagProperty("Immediate Popup", "", 0)]
public override bool ImmediatePopup { get; set; }

Property Value

Type Default Description
Boolean **true**

true, if the popup window is displayed immediately after an end-user has typed a character in the edit box; otherwise, false.

Remarks

If the ImmediatePopup property is true (the default behavior) the popup window is displayed immediately after an end-user has typed something in the edit box. The MRUEdit control supports the automatic filtering feature. So when the text within the edit box is modified the editor filters the items in the dropdown and displays those that match the current displayed value.

If the ImmediatePopup property is set to false, the end-user can open the popup window as follows:

To open the dropdown via code, you can use the PopupBaseEdit.ShowPopup method.

See Also