Class Slot
A class that represents specific time range.
Inherited Members
Namespace: Telerik.Maui.Controls.Scheduler
Assembly: Telerik.Maui.Controls.dll
Syntax
public class Slot : DateRange, INotifyPropertyChanged, IDateRange, ICopyable<Slot>
Constructors
Slot()
Slot(DateTime, DateTime)
Initializes a new instance of the Slot class.
Declaration
public Slot(DateTime start, DateTime end)
Parameters
System.DateTime
start
The start. |
System.DateTime
end
The end. |
Slot(IDateRange)
Initializes a new instance of the Slot class.
Declaration
public Slot(IDateRange other)
Parameters
IDateRange
other
A DateSpan instance that is used for initializing the new instance. |
Slot(Slot)
Initializes a new instance of the Slot class.
Declaration
public Slot(Slot other)
Parameters
Slot
other
Another slot that is used for initializing the new instance. |
Properties
IsReadOnly
Gets or sets a value indicating whether this slot is read only.
Declaration
public bool IsReadOnly { get; set; }
Property Value
System.Boolean
|
RecurrencePattern
Gets or sets the recurrence pattern.
Declaration
public RecurrencePattern RecurrencePattern { get; set; }
Property Value
RecurrencePattern
The recurrence pattern. |
TimeZone
Gets or sets the slot time zone.
Declaration
public TimeZoneInfo TimeZone { get; set; }
Property Value
System.TimeZoneInfo
The slot time zone. |
Methods
Copy()
CopyFrom(Slot)
Deep copies all properties from other
to this Slot.
Declaration
public virtual void CopyFrom(Slot other)
Parameters
Slot
other
The Slot which properties are copied. |
Implements
Equals(Object)
Determines whether the specified System.Object is equal to this instance.
Declaration
public override bool Equals(object obj)
Parameters
System.Object
obj
The System.Object to compare with this instance. |
Returns
System.Boolean
|
Overrides
Exceptions
System.NullReferenceException
The |