Class PopupOpenEventArgs<T>
Provides the information about the popup open action.
Inheritance
System.Object
PopupOpenEventArgs<T>
Namespace: Syncfusion.Blazor.Schedule
Assembly: Syncfusion.Blazor.dll
Syntax
public class PopupOpenEventArgs<T> : Object
Type Parameters
Name | Description |
---|---|
T | Specifies the type of schedule events. |
Constructors
PopupOpenEventArgs()
Declaration
public PopupOpenEventArgs()
Properties
Cancel
Gets or sets whether the popup open action of Scheduler should be canceled or not.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Data
Gets the cell or event data that is currently being opened.
Declaration
public T Data { get; set; }
Property Value
Type |
---|
T |
DataCollection
Gets the collection of events to be rendered in more event popup.
Declaration
public List<T> DataCollection { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<T> |
Duration
Gets or sets the time duration to be used in the editor window, which determines how the start and end time are displayed.
Declaration
public int Duration { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | Accepts an integer value. |
Remarks
By default, this will be based on the value of the Interval property in the ScheduleTimeScale tag directive.
Type
Gets the PopupType that is currently being opened.
Declaration
public PopupType Type { get; }
Property Value
Type | Description |
---|---|
PopupType | A PopupType value representing the type of the currently opened popup. |