Skip to main content

DataViewBase.ShowSearchPanelFindButton Property

Gets or sets whether on not to display the Find button within the Search Panel.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v14.2.Core.dll

#Declaration

[XtraSerializableProperty]
[CloneDetailMode(CloneDetailMode.Skip)]
public bool ShowSearchPanelFindButton { get; set; }

#Property Value

Type Description
Boolean

true to display a button used to activate the search; otherwise, false.

#Remarks

Setting the ShowSearchPanelFindButton property makes sense if the DataViewBase.SearchPanelFindMode property is set to FindMode.FindClick. In this instance, the grid starts searching data on clicking the Find button or pressing ENTER. If the DataViewBase.SearchPanelFindMode property is set to FindMode.Always, the grid starts searching data automatically, after a small delay specified by the DataViewBase.SearchDelay property. In this instance, the Find button is automatically hidden (setting the ShowSearchPanelFindButton property to true has no effect).

To learn more, see Search Panel.

See Also