Class
SchedulerDialogOpeningEventArgs

Contains information about the dialog which is going to be shown. This event argument class allows applications to intercept dialog opening events and optionally cancel dialog display or customize dialog behavior.

Definition

Namespace:Telerik.Maui.Controls.Scheduler

Assembly:Telerik.Maui.Controls.dll

Syntax:

cs-api-definition
public class SchedulerDialogOpeningEventArgs : SchedulerDialogEventArgs

Inheritance: objectSchedulerDialogEventArgsSchedulerDialogOpeningEventArgs

Inherited Members SchedulerDialogEventArgs.DialogType

Constructors

SchedulerDialogOpeningEventArgs(SchedulerDialogType)

Initializes a new instance of the SchedulerDialogOpeningEventArgs class.

Declaration

cs-api-definition
public SchedulerDialogOpeningEventArgs(SchedulerDialogType dialogType)

Parameters

dialogType

SchedulerDialogType

Properties

Cancel

Gets or sets a value indicating whether the dialog should be opened. When set to true, the dialog opening is cancelled and the default dialog will not be displayed. This allows applications to implement custom dialogs or restrict dialog access.

Declaration

cs-api-definition
public bool Cancel { get; set; }

Property Value

bool