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

RepositoryItemLookUpEditBase.ShowFooter Property

Gets or sets whether the dropdown window’s footer region is visible.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v19.1.dll

Declaration

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

Property Value

Type Default Description
Boolean **true**

true if the footer is visible; otherwise, false.

Remarks

The ShowFooter property controls the visibility of the footer region in the dropdown window. The footer contains a close button. Also you can drag the footer’s bottom right edge to resize the dropdown if RepositoryItemLookUpEditBase.PopupSizeable is set to true. If the footer is hidden, you cannot resize the dropdown even if RepositoryItemLookUpEditBase.PopupSizeable is set to true. Pressing the close button closes the popup and discards the user’s selection (made by using the Arrow keys). This is similar to pressing the Esc key or calling the PopupBaseEdit.CancelPopup method.

The following images show lookup editors with and without the footer region.

ShowFooter value Image
true LookupEdit_ShowFooter_true
false LookupEdit_ShowFooter_false
See Also