Skip to main content

ReminderCollectionXmlPersistenceHelper.ObjectFromXml(Appointment, String) Method

Loads the reminder collection from an XML string.

Namespace: DevExpress.XtraScheduler.Xml

Assembly: DevExpress.XtraScheduler.v23.2.Core.dll

NuGet Package: DevExpress.Scheduler.Core

Declaration

public static ReminderCollection ObjectFromXml(
    Appointment apt,
    string xml
)

Parameters

Name Type Description
apt Appointment

An Appointment for which reminders are loaded.

xml String

A string that is the XML representation of a reminder collection.

Returns

Type Description
ReminderCollection

A ReminderCollection object that is the collection of reminders for an appointment.

Example

This code snippet illustrates how to load Appointment.Reminders from an XML string. To save reminders to XML, use the ReminderCollectionXmlPersistenceHelper.CreateSaveInstance method.

Appointment apt = schedulerControl1.SelectedAppointments[0];
apt.Reminders.AddRange(ReminderCollectionXmlPersistenceHelper.ObjectFromXml(apt, reminderEdit.Text));
See Also