Class ResourceAssignmentChangeEventArgs<TAssignment>
Provides information about the event ResourceAssignmentChanging
Inheritance
Namespace: Syncfusion.Blazor.Gantt
Assembly: Syncfusion.Blazor.dll
Syntax
public class ResourceAssignmentChangeEventArgs<TAssignment> : Object
Type Parameters
Name | Description |
---|---|
TAssignment | The type of resources. |
Constructors
ResourceAssignmentChangeEventArgs()
Declaration
public ResourceAssignmentChangeEventArgs()
Properties
AddedResources
Gets or sets the list of added resource assignment data.
Declaration
public List<TAssignment> AddedResources { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<TAssignment> | A list of |
Remarks
This data holds the foreign key relation details of task and resource data.
Cancel
Gets or sets a value indicating whether the resource assignment’s data modification operation should be canceled.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
DeletedResources
Gets the list of deleted resource assignments.
Declaration
public List<TAssignment> DeletedResources { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<TAssignment> | A list of |
Remarks
This data holds the foreign key relation details of task and resource data.
UpdatedResources
Gets or sets the list of changed resource assignment records during dialog edit and cell edit.
Declaration
public List<TAssignment> UpdatedResources { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<TAssignment> | A list of |
Remarks
This data holds the foreign key relation details of task and resource data.