Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.Scheduler.dll
Syntax:
C#
public class SchedulerSaveLoadRemindersBehavior
Inheritance: objectSchedulerSaveLoadRemindersBehavior
Constructors
C#
public SchedulerSaveLoadRemindersBehavior(RadScheduler scheduler)
Properties
Gets the Scheduler this behavior is assigned to.
C#
public RadScheduler Scheduler { get; }
Methods
Clears the reminders of all appointments. Usually this method is used before LoadReminders is called.
C#
public virtual void ClearReminders()
Loads the reminders from the specified stream.
C#
public virtual void LoadReminders(Stream stream)
The steam to load reminders from.
Loads the reminders from the specified file path.
C#
public virtual void LoadReminders(string filePath)
The path to the file to load reminders from.
Saves all appointment reminders to the provided stream.
C#
public virtual void SaveReminders(Stream stream)
The stream to save the reminders to.
Saves all appointment reminders to the provided file. If the file does not exist it is created otherwise it is overwritten.
C#
public virtual void SaveReminders(string filePath)
The path to the file to save the reminders to.