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

VGridOptionsFind.Visibility Property

Gets or sets whether the Find Panel can be accessed by an end-user.

Namespace: DevExpress.XtraVerticalGrid.Rows

Assembly: DevExpress.XtraVerticalGrid.v18.2.dll

Declaration

[DefaultValue(FindPanelVisibility.Default)]
[XtraSerializableProperty]
public virtual FindPanelVisibility Visibility { get; set; }

Property Value

Type Default Description
DevExpress.XtraVerticalGrid.FindPanelVisibility **Default**

A value that specifies whether the Find Panel can be accessed by an end-user.

Property Paths

You can access this nested property as listed below:

Object Type Path to Visibility
VGridControl
.OptionsFind.Visibility
VGridControlBase
.OptionsFind.Visibility

Remarks

If the Find Panel is hidden and the Visibility property is set to Default, an end-user can invoke the Find Panel by pressing CTRL+F. Ensure that no cell editor is opened before invoking the Find Panel. Otherwise, the shortcut will be intercepted by the in-place editor.

Set the Visibility property to Always, to always display the Find Panel and prevent it from being hidden by an end-user. Set this property to Never to prevent the panel from being displayed.

See Also