Class DailyRecurrenceRule
Represents a daily recurrence rule.
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.Scheduler.dll
Syntax
public class DailyRecurrenceRule : RecurrenceRule, INotifyPropertyChanged, ICloneable, IEquatable<RecurrenceRule>
Constructors
DailyRecurrenceRule()
Initializes a new instance of the DailyRecurrenceRule class.
Declaration
public DailyRecurrenceRule()
DailyRecurrenceRule(DateTime, DateTime, Int32)
Initializes a new instance of the DailyRecurrenceRule class.
Declaration
public DailyRecurrenceRule(DateTime start, DateTime end, int interval)
Parameters
System.DateTime
start
The start of the recurrence rule. |
System.DateTime
end
The end of the recurrence rule. |
System.Int32
interval
The interval of the recurrence rule. |
DailyRecurrenceRule(DateTime, DateTime, Int32, Int32)
Initializes a new instance of the DailyRecurrenceRule class.
Declaration
public DailyRecurrenceRule(DateTime start, DateTime end, int interval, int count)
Parameters
System.DateTime
start
The start of the recurrence rule. |
System.DateTime
end
The end of the recurrence rule. |
System.Int32
interval
The interval of the recurrence rule. |
System.Int32
count
The maximum number of occurrences. |
DailyRecurrenceRule(DateTime, Int32)
Initializes a new instance of the DailyRecurrenceRule class.
Declaration
public DailyRecurrenceRule(DateTime start, int interval)
Parameters
System.DateTime
start
The start of the recurrence rule. |
System.Int32
interval
The interval of the recurrence rule. |
DailyRecurrenceRule(DateTime, Int32, Int32)
Initializes a new instance of the DailyRecurrenceRule class.
Declaration
public DailyRecurrenceRule(DateTime start, int interval, int count)
Parameters
System.DateTime
start
The start of the recurrence rule. |
System.Int32
interval
The interval of the recurrence rule. |
System.Int32
count
The maximum number of occurrences. |
Properties
Frequency
Gets the type of the recurrence rule.
Declaration
public override RecurrenceType Frequency { get; }
Property Value
RecurrenceType
The type of the recurrence rule. |
Overrides
Methods
CreateInstance()
Equals(RecurrenceRule)
Declaration
public override bool Equals(RecurrenceRule other)
Parameters
RecurrenceRule
other
|
Returns
System.Boolean
|
Overrides
GetOccurrenceStart(Int32, DateTime, DateTimeFormatInfo)
Gets the occurrence start given a occurrence index.
Declaration
public override DateTime GetOccurrenceStart(int index, DateTime startDate, DateTimeFormatInfo dateTimeFormat)
Parameters
System.Int32
index
The index. |
System.DateTime
startDate
The start of the recurring series. |
System.Globalization.DateTimeFormatInfo
dateTimeFormat
The date time format. |
Returns
System.DateTime
|
Overrides
IntersectsWithException(DateTime, TimeSpan, IEvent)
Declaration
public override bool IntersectsWithException(DateTime eventStart, TimeSpan eventDuration, IEvent exception)
Parameters
System.DateTime
eventStart
|
System.TimeSpan
eventDuration
|
IEvent
exception
|
Returns
System.Boolean
|