windowsforms-devexpress-dot-xtragrid-dot-views-dot-grid-dot-gridoptionsnavigation-2fd67f13.md
Enables the Office 2007 navigation mode, where pressing the PAGE DOWN key moves focus to the bottom visible record, and pressing the PAGE UP key moves focus to the top visible record.
Namespace : DevExpress.XtraGrid.Views.Grid
Assembly : DevExpress.XtraGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
[DefaultValue(true)]
[XtraSerializableProperty]
public virtual bool UseOfficePageNavigation { get; set; }
<DefaultValue(True)>
<XtraSerializableProperty>
Public Overridable Property UseOfficePageNavigation As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | true |
true if Office 2007 navigation mode is enabled; otherwise, false.
|
You can access this nested property as listed below:
| Object Type | Path to UseOfficePageNavigation |
|---|---|
| GridView |
.OptionsNavigation .UseOfficePageNavigation
| | WinExplorerView |
.OptionsNavigation .UseOfficePageNavigation
|
If the UseOfficePageNavigation property is set to true , pressing the PAGE DOWN key moves focus to the bottom visible record; pressing the PAGE UP key moves focus to the top visible record.
If the UseOfficePageNavigation property is set to false , pressing the PAGE DOWN key scrolls the bottom visible record to the top; pressing the PAGE UP key scrolls the top visible record to the bottom.
See Also