Class GanttDialogOpenEventArgs<TValue>
Represents event arguments for the GanttDialogOpening event of a Gantt chart dialog.
Inheritance
System.Object
GanttDialogOpenEventArgs<TValue>
Namespace: Syncfusion.Blazor.Gantt
Assembly: Syncfusion.Blazor.dll
Syntax
public class GanttDialogOpenEventArgs<TValue> : Object
Type Parameters
Name |
---|
TValue |
Constructors
GanttDialogOpenEventArgs()
Declaration
public GanttDialogOpenEventArgs()
Properties
Cancel
Gets or sets a value indicating whether to cancel the dialog opening.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | If the Cancel property is set to |
Data
Gets the data associated with the row being edited.
Declaration
public TValue Data { get; }
Property Value
Type | Description |
---|---|
TValue | An object of the type |
IsEditAction
Gets the boolean value indicating whether the current action is Add or Edit.
Declaration
public bool IsEditAction { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
|