New to Telerik UI for WinFormsStart a free 30-day trial

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.Scheduler.dll

Syntax:

C#
public class SchedulerCellSelectingEventArgs : CancelEventArgs

Inheritance: objectEventArgsCancelEventArgsSchedulerCellSelectingEventArgs

Inherited Members CancelEventArgs.CancelEventArgs.Empty

Constructors

C#
public SchedulerCellSelectingEventArgs(SchedulerCellElement cell, DateTime selectionStartDate, DateTime selectionEndDate, EventId resourceId, bool extendSelection)
Parameters:cellSchedulerCellElementselectionStartDateDateTimeselectionEndDateDateTimeresourceIdEventIdextendSelectionbool

Properties

Gets the cell that is being selected.

C#
public SchedulerCellElement Cell { get; }

Indicates whether this selection operation will extend the current selection (e.g. when selecting cells when holding Shift down).

C#
public bool ExtendSelection { get; }

The end date of the range that is going to be selected.

C#
public DateTime SelectionEndDate { get; }

The id of the resource in which the selection is going to be performed.

C#
public EventId SelectionResourceId { get; }

The start date of the range that is going to be selected.

C#
public DateTime SelectionStartDate { get; }