menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class ResourceAssignmentChangeEventArgs<TAssignment> - Blazor API Reference | Syncfusion

    Show / Hide Table of Contents

    Class ResourceAssignmentChangeEventArgs<TAssignment>

    Provides information about the event ResourceAssignmentChanging

    Inheritance
    System.Object
    ResourceAssignmentChangeEventArgs<TAssignment>
    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 TAssignment

    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

    true if the resource change action will be canceled; otherwise, false. The default value is false.

    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 TAssignment representing the resources that were deleted as part of the remove the resource in dialog edit and cell edit operation. 

    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 TAssignment representing the resources that were updated as part of the resource dialog edit, and cell edit operation. 

    Remarks

    This data holds the foreign key relation details of task and resource data.

    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved