windowsforms-devexpress-dot-xtraverticalgrid-dot-rows-dot-vgridoptionsfind-23d5a86b.md
Gets or sets whether the Find Panel can be accessed by an end-user.
Namespace : DevExpress.XtraVerticalGrid.Rows
Assembly : DevExpress.XtraVerticalGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid
[DefaultValue(FindPanelVisibility.Default)]
[XtraSerializableProperty]
public virtual FindPanelVisibility Visibility { get; set; }
<DefaultValue(FindPanelVisibility.Default)>
<XtraSerializableProperty>
Public Overridable Property Visibility As FindPanelVisibility
| Type | Default | Description |
|---|---|---|
| DevExpress.XtraVerticalGrid.FindPanelVisibility | Default |
A value that specifies whether the Find Panel can be accessed by an end-user.
|
You can access this nested property as listed below:
| Object Type | Path to Visibility |
|---|---|
| VGridControlBase |
.OptionsFind .Visibility
|
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