Class
SchedulerSaveLoadRemindersBehavior

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.Scheduler.dll

Syntax:

cs-api-definition
public class SchedulerSaveLoadRemindersBehavior

Inheritance: objectSchedulerSaveLoadRemindersBehavior

Constructors

SchedulerSaveLoadRemindersBehavior(RadScheduler)

Declaration

cs-api-definition
public SchedulerSaveLoadRemindersBehavior(RadScheduler scheduler)

Parameters

scheduler

RadScheduler

Properties

Scheduler

Gets the Scheduler this behavior is assigned to.

Declaration

cs-api-definition
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

cs-api-definition
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.

Declaration

cs-api-definition
protected virtual Event GetAppointmentByRemindId(int remindId)

Parameters

remindId

int

The remind id to search for.

Returns

Event

LoadReminders(Stream)

Loads the reminders from the specified stream.

Declaration

cs-api-definition
public virtual void LoadReminders(Stream stream)

Parameters

stream

Stream

The steam to load reminders from.

LoadReminders(string)

Loads the reminders from the specified file path.

Declaration

cs-api-definition
public virtual void LoadReminders(string filePath)

Parameters

filePath

string

The path to the file to load reminders from.

SaveReminders(Stream)

Saves all appointment reminders to the provided stream.

Declaration

cs-api-definition
public virtual void SaveReminders(Stream stream)

Parameters

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

cs-api-definition
public virtual void SaveReminders(string filePath)

Parameters

filePath

string

The path to the file to save the reminders to.