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

IRemindObject

Interface

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.Scheduler.dll

Syntax:

C#
public interface IRemindObject : INotifyPropertyChanged

Derived Classes: AppointmentEventRadRemindItem

Inherited Members INotifyPropertyChanged.PropertyChanged

Properties

Gets or sets a value indicating whether the reminder of this IRemindObject is dismissed.

C#
bool Dismissed { get; set; }
Property Value:

true if dismissed; otherwise, false.

Gets or sets a time span value indicating how much time before the start of this IRemindObject the reminder should be triggered.

C#
TimeSpan? Reminder { get; set; }
Property Value:

The reminder.

Gets the remind identifier used for identifying the reminder of this event.

C#
int RemindId { get; }
Property Value:

The remind identifier.

Gets or sets a time span indicating the amount of time the reminder of this IRemindObject is snoozed for.

C#
TimeSpan Snoozed { get; set; }
Property Value:

The snoozed time.

Gets the start date time of this remind object.

C#
DateTime StartDateTime { get; }
Property Value:

The start date time.

Gets the subject of this remind object. This text is usually displayed when visualizing a reminder.

C#
string Subject { get; }
Property Value:

The subject.