Class TimeSlotTapEventArgs
Event arguments associated with the Tap event that occurs on tapping a time slot.
Inheritance
Namespace: Telerik.XamarinForms.Input
Assembly: Telerik.XamarinForms.Input.dll
Syntax
public class TimeSlotTapEventArgs : EventArgs
Constructors
TimeSlotTapEventArgs(DateTime, DateTime, Boolean)
Creates event arguments associated with the Tap event that occurs on tapping a time slot.
Declaration
public TimeSlotTapEventArgs(DateTime startTime, DateTime endTime, bool isReadOnly = false)
Parameters
System.DateTime
startTime
Specifies the start time of the time slot where the user has tapped. |
System.DateTime
endTime
Specifies the end time of the time slot where the user has tapped. |
System.Boolean
isReadOnly
Specifies the readonly state of the time slot where the user has tapped. |
Properties
EndTime
Specifies the end time of the time slot where the user has tapped.
Declaration
public DateTime EndTime { get; }
Property Value
System.DateTime
|
Handled
Specifies whether the default scheduling screen should appear on click.
Declaration
public bool Handled { get; set; }
Property Value
System.Boolean
|
IsReadOnly
Indicates whether the time slot tapped is readonly.
Declaration
public bool IsReadOnly { get; }
Property Value
System.Boolean
|
StartTime
Specifies the start time of the time slot where the user has tapped.
Declaration
public DateTime StartTime { get; }
Property Value
System.DateTime
|