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

ColumnViewOptionsFind.AlwaysVisible Property

Gets or sets whether the Find Panel is always visible.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v18.2.dll

Declaration

[DefaultValue(false)]
[XtraSerializableProperty]
public virtual bool AlwaysVisible { get; set; }

Property Value

Type Default Description
Boolean **false**

true if the Find Panel is always visible; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to AlwaysVisible
AdvBandedGridView
.OptionsFind.AlwaysVisible
BandedGridView
.OptionsFind.AlwaysVisible
ColumnView
.OptionsFind.AlwaysVisible
CardView
.OptionsFind.AlwaysVisible
GridView
.OptionsFind.AlwaysVisible
LayoutView
.OptionsFind.AlwaysVisible
TileView
.OptionsFind.AlwaysVisible
WinExplorerView
.OptionsFind.AlwaysVisible

Remarks

Set the AlwaysVisible property to true, to prevent the Find Panel from being hidden by an end-user.


gridView1.OptionsFind.AlwaysVisible = true;

You can also prevent the Find Panel from being hidden by setting the ColumnViewOptionsFind.ShowCloseButton property to false.

Note that if the AlwaysVisible property is set to true, the close (‘x’) button is hidden, even if the ColumnViewOptionsFind.ShowCloseButton property is set to true.

If the Find Panel is hidden and the ColumnViewOptionsFind.AllowFindPanel property is enabled, an end-user can invoke the Find Panel by pressing CTRL+F. In code, the Find Panel can also be displayed via the ColumnView.ShowFindPanel method.

The following code snippets (auto-collected from DevExpress Examples) contain references to the AlwaysVisible property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also