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

GridControl.UseEmbeddedNavigator Property

Gets or sets whether the embedded data navigator is visible.

Namespace: DevExpress.XtraGrid

Assembly: DevExpress.XtraGrid.v18.2.dll

Declaration

[Browsable(true)]
[DefaultValue(false)]
[DXCategory("Appearance")]
public virtual bool UseEmbeddedNavigator { get; set; }

Property Value

Type Default Description
Boolean **false**

true to make the embedded navigator visible; otherwise, false.

Remarks

When the UseEmbeddedNavigator property value is true, the embedded data navigator is displayed at the bottom of the grid control. You can access this navigator’s settings using the GridControl.EmbeddedNavigator property.

You can also make use of an external data navigator. To do so, place a ControlNavigator control onto the form and bind it to your grid using the ControlNavigator.NavigatableControl property.

Online Video

WinForms Grid: Adding a Popup Warning for Row Deletion.

The following code snippets (auto-collected from DevExpress Examples) contain references to the UseEmbeddedNavigator property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also