New to Telerik UI for WinFormsStart a free 30-day trial

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.Scheduler.dll

Syntax:

C#
public class SchedulerSaveLoadRemindersBehavior

Inheritance: objectSchedulerSaveLoadRemindersBehavior

Constructors

C#
public SchedulerSaveLoadRemindersBehavior(RadScheduler scheduler)
Parameters:schedulerRadScheduler

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()

Searches for an appointment with the specified remind id in the Appointments collection of the RadScheduler this behavior is assigned to.

C#
protected virtual Event GetAppointmentByRemindId(int remindId)
Parameters:remindIdint

The remind id to search for.

Returns:

Event

Loads the reminders from the specified stream.

C#
public virtual void LoadReminders(Stream stream)
Parameters:streamStream

The steam to load reminders from.

Loads the reminders from the specified file path.

C#
public virtual void LoadReminders(string filePath)
Parameters:filePathstring

The path to the file to load reminders from.

Saves all appointment reminders to the provided stream.

C#
public virtual void SaveReminders(Stream stream)
Parameters:streamStream

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)
Parameters:filePathstring

The path to the file to save the reminders to.