Class SchedulerSaveLoadRemindersBehavior
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.Scheduler.dll
Syntax
public class SchedulerSaveLoadRemindersBehavior
Constructors
SchedulerSaveLoadRemindersBehavior(RadScheduler)
Declaration
public SchedulerSaveLoadRemindersBehavior(RadScheduler scheduler)
Parameters
RadScheduler
scheduler
|
Properties
Scheduler
Gets the Scheduler this behavior is assigned to.
Declaration
public RadScheduler Scheduler { get; }
Property Value
RadScheduler
|
Methods
ClearReminders()
Clears the reminders of all appointments. Usually this method is used before LoadReminders is called.
Declaration
public virtual void ClearReminders()
GetAppointmentByRemindId(Int32)
Searches for an appointment with the specified remind id in the Appointments collection of the RadScheduler this behavior is assigned to.
Declaration
protected virtual Event GetAppointmentByRemindId(int remindId)
Parameters
System.Int32
remindId
The remind id to search for. |
Returns
Event
|
LoadReminders(Stream)
Loads the reminders from the specified stream.
Declaration
public virtual void LoadReminders(Stream stream)
Parameters
System.IO.Stream
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
System.String
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
System.IO.Stream
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
System.String
filePath
The path to the file to save the reminders to. |