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

RecordsNavigationController.OrderProviderSource Property

Provides access to the RecordsNavigationController‘s Order Provider.

Namespace: DevExpress.ExpressApp.SystemModule

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

public OrderProviderSource OrderProviderSource { get; set; }

Property Value

Type Description
DevExpress.ExpressApp.SystemModule.OrderProviderSource

An OrderProviderSource object representing a service for getting required objects from the specified View.

Remarks

To determine what object collection to use, and how to get required objects from it, when the NextObject and PreviousObject Actions are executed, the RecordsNavigationController uses an OrderProviderSource. This object provides access to an OrderProvider object that has useful methods for implementing NextObject and PreviousObject Actions execution. There are several built-in Order Providers. In addition, you can implement a custom one. Use this property to set an OrderProviderSource with the required Order Provider for the RecordsNavigationController. For details, refer to the RecordsNavigationController class description.

See Also