Class SchedulerCellSelectingEventArgs
Inheritance
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.Scheduler.dll
Syntax
public class SchedulerCellSelectingEventArgs : CancelEventArgs
Constructors
SchedulerCellSelectingEventArgs(SchedulerCellElement, DateTime, DateTime, EventId, Boolean)
Declaration
public SchedulerCellSelectingEventArgs(SchedulerCellElement cell, DateTime selectionStartDate, DateTime selectionEndDate, EventId resourceId, bool extendSelection)
Parameters
SchedulerCellElement
cell
|
System.DateTime
selectionStartDate
|
System.DateTime
selectionEndDate
|
EventId
resourceId
|
System.Boolean
extendSelection
|
Properties
Cell
Gets the cell that is being selected.
Declaration
public SchedulerCellElement Cell { get; }
Property Value
SchedulerCellElement
|
ExtendSelection
Indicates whether this selection operation will extend the current selection (e.g. when selecting cells when holding Shift down).
Declaration
public bool ExtendSelection { get; }
Property Value
System.Boolean
|
SelectionEndDate
The end date of the range that is going to be selected.
Declaration
public DateTime SelectionEndDate { get; }
Property Value
System.DateTime
|
SelectionResourceId
The id of the resource in which the selection is going to be performed.
Declaration
public EventId SelectionResourceId { get; }
Property Value
EventId
|
SelectionStartDate
The start date of the range that is going to be selected.
Declaration
public DateTime SelectionStartDate { get; }
Property Value
System.DateTime
|