Gets a read-only collection of DateTime objects, sorted chronologically. Each pair in the collection represents a selected time range.
Namespace: MindFusion.Scheduling.Wpf
Assembly: MindFusion.Scheduling.Wpf
SyntaxC#
Copy Code
|
|---|
public IList<DateTime> Ranges { get; } |
Visual Basic
Copy Code
|
|---|
Public ReadOnly Property Ranges As IList(Of DateTime) |
An instance of an IList class containing even number of DateTime objects.
RemarksAny attempt to modify the returned list will result in a NotSupportedException exception. If you want to add or remove time intervals from the selection, use the Add, Set and Remove methods respectively.
See Also