Skip to main content
You are viewing help content for a version that is no longer maintained/updated.
All docs
V19.2
  • GridViewOptionsFind.FindPanelLocation Property

    Gets or sets whether the Find Panel is a separate panel, or is embedded into Group Panel.

    Namespace: DevExpress.XtraGrid.Views.Grid

    Assembly: DevExpress.XtraGrid.v19.2.dll

    NuGet Package: DevExpress.Win.Grid

    Declaration

    [DefaultValue(GridFindPanelLocation.Default)]
    [XtraSerializableProperty]
    public GridFindPanelLocation FindPanelLocation { get; set; }

    Property Value

    Type Default Description
    GridFindPanelLocation Default

    The GridFindPanelLocation enumeration value that specifies whether or not the Data Grid Find Panel is a separate element.

    Available values:

    Name Description
    Default

    The default location depends on the Version Compatibility setting. Since version 19.2, the find panel is embedded into the group panel.

    GroupPanel

    The find panel is embedded into the group panel. This mode is only available if the GridView.OptionsView.ShowGroupPanel option is enabled.

    Panel

    The find panel is displayed in a separate panel.

    Property Paths

    You can access this nested property as listed below:

    Object Type Path to FindPanelLocation
    GridView
    .OptionsFind .FindPanelLocation

    Remarks

    In versions 19.1 and older, Find Panel was a separate panel placed above the Group Panel.

    embedded-find

    Starting with version 19.2, Find Panel is embedded into the Group Panel.

    separate-find

    To revert to two separate visual elements, set this property to Panel. To do the same for all Data Grids in the project, switch the global WindowsFormsSettings.DefaultSettingsCompatibilityMode property to v19_1.

    See Also