Skip to main content
All docs
V25.1
  • FetchDataEventArgs.Result Property

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

    Namespace: DevExpress.Xpf.Scheduling

    Assembly: DevExpress.Xpf.Scheduling.v25.1.dll

    NuGet Package: 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.

    If you want to implement the asynchronous data load, use the AsyncResult property.

    See Also