Version

RaisePropertyChanged Method (ScheduleListDataSource)

Notifies the data source of a change to a property value of the specified dataObject.
Syntax
public void RaisePropertyChanged( 
   object dataObject,
   AppointmentProperty property
)

Parameters

dataObject
The data object whose property value has changed.
property
A constant identifying the property whose value has changed.
Remarks

In cases where there are a relatively large number of data objects in the AppointmentItemsSource, performance may be adversely impacted by handling the PropertyChanged event via the data object's INotifyPropertyChanged interface. To avoid this, set the HandleAppointmentItemsPropertyChanged property to false.

Note that if the data source is created in this manner, the state of the corresponding Infragistics.Scheduler.Appointment object cannot be automatically synchronized with that of the underlying data object.

Use this method to manually send a property change notification for the affected data object and property value, thus ensuring that the state of the appointment object is synchronized with that of the underlying data object.

Requirements

Target Platforms: Android 4.4+, iOS 8+

Development Environments: Visual Studio 2015+, Visual Studio for Mac Preview, Xamarin for Visual Studio 4.2+

See Also