Class SchedulerDialogClosingEventArgs
Contains state information about the dialog that is going to be closed.
Inherited Members
Namespace: Telerik.Maui.Controls.Scheduler
Assembly: Telerik.Maui.Controls.dll
Syntax
public class SchedulerDialogClosingEventArgs : SchedulerDialogEventArgs
Constructors
SchedulerDialogClosingEventArgs(SchedulerDialogType, Nullable<Boolean>)
Initializes a new instance of the SchedulerDialogClosingEventArgs class.
Declaration
public SchedulerDialogClosingEventArgs(SchedulerDialogType dialogType, Nullable<bool> dialogResult)
Parameters
SchedulerDialogType
dialogType
|
System.Nullable<System.Boolean>
dialogResult
|
Properties
Cancel
Gets or sets a value indicating whether the dialog should be closed.
Declaration
public bool Cancel { get; set; }
Property Value
System.Boolean
|
DialogResult
Gets the DialogResult when closing the dialog. The value is null is when the dialog is closed by the close Button of the SchedulerDialog. False when Cancel option is pressed. Otherwise the value is True.
Declaration
public Nullable<bool> DialogResult { get; }
Property Value
System.Nullable<System.Boolean>
|