Class RadRemindItem
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.Scheduler.dll
Syntax
public class RadRemindItem : IRemindObject, INotifyPropertyChanged
Constructors
RadRemindItem()
Declaration
public RadRemindItem()
RadRemindItem(String, DateTime)
Declaration
public RadRemindItem(string subject, DateTime startDateTime)
Parameters
System.String
subject
|
System.DateTime
startDateTime
|
RadRemindItem(String, DateTime, Nullable<TimeSpan>)
Declaration
public RadRemindItem(string subject, DateTime startDateTime, TimeSpan? reminder)
Parameters
System.String
subject
|
System.DateTime
startDateTime
|
System.Nullable<System.TimeSpan>
reminder
|
Properties
Dismissed
Gets or sets a value indicating whether this RadRemindItem is dismissed.
Declaration
public bool Dismissed { get; set; }
Property Value
System.Boolean
|
Implements
Reminder
Gets or sets the time before the start of the item when a notification should be raised.
Declaration
public TimeSpan? Reminder { get; set; }
Property Value
System.Nullable<System.TimeSpan>
The reminder. |
Implements
RemindId
Gets a unique identifier for the item.
Declaration
public int RemindId { get; }
Property Value
System.Int32
The identifier. |
Implements
Snoozed
Gets or sets the time this item is snoozed for.
Declaration
public TimeSpan Snoozed { get; set; }
Property Value
System.TimeSpan
The snoozed. |
Implements
StartDateTime
Gets or sets the start date and time for this item.
Declaration
public DateTime StartDateTime { get; set; }
Property Value
System.DateTime
The start date time. |
Implements
Subject
Gets or sets the subject of this item.
Declaration
public string Subject { get; set; }
Property Value
System.String
The subject. |
Implements
Methods
OnPropertyChanged(String)
Called when [property changed].
Declaration
protected virtual void OnPropertyChanged(string info)
Parameters
System.String
info
The info. |
Events
PropertyChanged
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
System.ComponentModel.PropertyChangedEventHandler
|