Class IActionBeginEventArgs<T>
Class that defines action begin event arguments.
Inheritance
System.Object
IActionBeginEventArgs<T>
Implements
System.IEquatable<IActionBeginEventArgs<T>>
Namespace: Syncfusion.Blazor.Gantt
Assembly: Syncfusion.Blazor.dll
Syntax
public class IActionBeginEventArgs<T> : Object, IEquatable<IActionBeginEventArgs<T>>
Type Parameters
Name | Description |
---|---|
T |
Constructors
IActionBeginEventArgs()
Declaration
public IActionBeginEventArgs()
Properties
Action
Defines event action details
Declaration
public string Action { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Cancel
Defines the event cancel status
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Data
Defines the processed record
Declaration
public object Data { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
ModifiedRecords
Defines the modified records.
Declaration
public List<IGanttData<T>> ModifiedRecords { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<IGanttData<T>> |
ModifiedTaskData
Defines the modified task data.
Declaration
public object ModifiedTaskData { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
RequestType
Defines the request type.
Declaration
public string RequestType { get; set; }
Property Value
Type | Description |
---|---|
System.String |
TaskBarEditAction
Defines the taskbar edit action type
Declaration
public string TaskBarEditAction { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
Equals(IActionBeginEventArgs<T>)
Returns boolean value by comparing iActionBeginEventArgs
Declaration
public bool Equals(IActionBeginEventArgs<T> iActionBeginEventArgs)
Parameters
Type | Name | Description |
---|---|---|
IActionBeginEventArgs<T> | iActionBeginEventArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Equals(Object)
Returns boolean value by comparing object
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
System.Object | obj |
Returns
Type | Description |
---|---|
System.Boolean |
GetHashCode()
Returns hashcode for current object
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System.Int32 |
Implements
System.IEquatable<>