Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

VGridOptionsFind.Visibility Property

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

Namespace: DevExpress.XtraVerticalGrid.Rows

Assembly: DevExpress.XtraVerticalGrid.v24.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid

#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
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