Skip to main content

ShowSearchPanelMode Enum

Lists values that specify when the Search Panel is displayed.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v14.2.Core.dll

#Declaration

public enum ShowSearchPanelMode

#Members

Name Description
Default

Activates the default behavior.

CTRL+F - Invokes the Search Panel. Ensure that no cell editor is opened before invoking the Find Panel. Otherwise, the shortcut will be intercepted by the in-place editor.

The Close button (if displayed) hides the Search Panel.

ESC - Clears the search box. If the search box is empty, pressing ESC closes the Search Panel.

Always

The Search Panel is always visible, it cannot be hidden by an end-user. The close button is hidden.

Never

The Search Panel is hidden and cannot be shown by the end-user.

#Passed To

You can pass ShowSearchPanelMode values to the DataViewBase.ShowSearchPanelMode property.

#Remarks

The values listed by this enumeration are used to set the DataViewBase.ShowSearchPanelMode property's value.

See Also