RecurrenceRange Constructor (DateTime, TimeSpan, DateTime, Int32) |
Overloaded. Initializes a new instance of the
RecurrenceRange
class with to the specified Start, EventDuration, RecursUntil and MaxOccurrences
values.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic RecurrenceRange(
DateTime start,
TimeSpan duration,
DateTime recursUntil,
int maxOccurrences
)
Public Sub New (
start As DateTime,
duration As TimeSpan,
recursUntil As DateTime,
maxOccurrences As Integer
)
public:
RecurrenceRange(
DateTime start,
TimeSpan duration,
DateTime recursUntil,
int maxOccurrences
)
new :
start : DateTime *
duration : TimeSpan *
recursUntil : DateTime *
maxOccurrences : int -> RecurrenceRange
Parameters
- start
- Type: SystemDateTime
The start of the recurring event. - duration
- Type: SystemTimeSpan
The duration of the recurring event. - recursUntil
- Type: SystemDateTime
Optional end date for the recurring appointment. Defaults to no end date
(DateTime.MaxValue).
- maxOccurrences
- Type: SystemInt32
Optional limit for the number of occurrences. Defaults to no limit
(Int32.MaxInt).
See Also