Skip to main content
A newer version of this page is available. .
All docs
V20.2

FetchDataEventArgs.Result Property

Specifies the list of scheduler items to load from the data source.

Namespace: DevExpress.Xpf.Scheduling

Assembly: DevExpress.Xpf.Scheduling.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Scheduling, DevExpress.Wpf.Scheduling

Declaration

public object[] Result { get; set; }

Property Value

Type Description
Object[]

The list of appointments to load.

Remarks

The Result property accepts both data objects and scheduler items.

To pass data objects to the Result property, set the DataSource.FetchMode property to Bound. Specify the AppointmentMappings/TimeRegionMappings property and map the Id. See the Mappings topic for more information.

To pass scheduler items to the Result property, set the DataSource.FetchMode property to Unbound. If the DataSource.FetchMode property is set to Unbound and the AppointmentMappings property does not return null, an exception is thrown.

See Also