ClassSchedulerSaveLoadRemindersBehavior
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.Scheduler.dll
Syntax:
public class SchedulerSaveLoadRemindersBehavior
Inheritance: objectSchedulerSaveLoadRemindersBehavior
Constructors
SchedulerSaveLoadRemindersBehavior(RadScheduler)
Declaration
public SchedulerSaveLoadRemindersBehavior(RadScheduler scheduler)
Parameters
scheduler
Properties
Scheduler
Gets the Scheduler this behavior is assigned to.
Methods
ClearReminders()
Clears the reminders of all appointments. Usually this method is used before LoadReminders is called.
Declaration
public virtual void ClearReminders()
GetAppointmentByRemindId(int)
Searches for an appointment with the specified remind id in the Appointments collection of the RadScheduler this behavior is assigned to.
LoadReminders(Stream)
Loads the reminders from the specified stream.
Declaration
public virtual void LoadReminders(Stream stream)
Parameters
stream
The steam to load reminders from.
LoadReminders(string)
Loads the reminders from the specified file path.
Declaration
public virtual void LoadReminders(string filePath)
Parameters
filePath
The path to the file to load reminders from.
SaveReminders(Stream)
Saves all appointment reminders to the provided stream.
Declaration
public virtual void SaveReminders(Stream stream)
Parameters
stream
The stream to save the reminders to.
SaveReminders(string)
Saves all appointment reminders to the provided file. If the file does not exist it is created otherwise it is overwritten.
Declaration
public virtual void SaveReminders(string filePath)
Parameters
filePath
The path to the file to save the reminders to.