Interface IRemindObject
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.Scheduler.dll
Syntax
public interface IRemindObject : INotifyPropertyChanged
Properties
Dismissed
Gets or sets a value indicating whether the reminder of this IRemindObject is dismissed.
Declaration
bool Dismissed { get; set; }
Property Value
System.Boolean
|
Reminder
Gets or sets a time span value indicating how much time before the start of this IRemindObject the reminder should be triggered.
Declaration
TimeSpan? Reminder { get; set; }
Property Value
System.Nullable<System.TimeSpan>
The reminder. |
RemindId
Gets the remind identifier used for identifying the reminder of this event.
Declaration
int RemindId { get; }
Property Value
System.Int32
The remind identifier. |
Snoozed
Gets or sets a time span indicating the amount of time the reminder of this IRemindObject is snoozed for.
Declaration
TimeSpan Snoozed { get; set; }
Property Value
System.TimeSpan
The snoozed time. |
StartDateTime
Gets the start date time of this remind object.
Declaration
DateTime StartDateTime { get; }
Property Value
System.DateTime
The start date time. |
Subject
Gets the subject of this remind object. This text is usually displayed when visualizing a reminder.
Declaration
string Subject { get; }
Property Value
System.String
The subject. |