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

DataViewBase.ShowSearchPanelNavigationButtons Property

Gets or sets whether to show navigation buttons in the grid’s search panel.

Namespace: DevExpress.Xpf.Grid

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

Declaration

public bool ShowSearchPanelNavigationButtons { get; set; }

Property Value

Type Description
Boolean

true, if navigation buttons are displayed in the search panel; otherwise, false.

Remarks

Use the ShowSearchPanelNavigationButtons property to enable display of the search buttons in the grid’s search panel. These buttons allow end-users to navigate search results.

You can navigate search results in code by calling the DataViewBase.IncrementalSearchMoveNext and DataViewBase.IncrementalSearchMovePrev methods.

The grid views support search result navigation via commands: DataViewCommandsBase.IncrementalSearchMoveNext and DataViewCommandsBase.IncrementalSearchMovePrev.

See Also