Class
GanttUpdateEventArgs

The event arguments for the OnUpdate event.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class GanttUpdateEventArgs : EventArgs

Inheritance: objectEventArgsGanttUpdateEventArgs

Inherited Members EventArgs.Empty

Constructors

GanttUpdateEventArgs()

Declaration

cs-api-definition
public GanttUpdateEventArgs()

GanttUpdateEventArgs(object, object, List<GanttDependencyDescriptor>, List<GanttDependencyDescriptor>, List<GanttDependencyDescriptor>)

Declaration

cs-api-definition
public GanttUpdateEventArgs(object updatedItem, object parentItem, List<GanttDependencyDescriptor> createdDependencies, List<GanttDependencyDescriptor> updatedDependencies, List<GanttDependencyDescriptor> deletedDependencies)

Parameters

updatedItem

object

parentItem

object

createdDependencies

List<GanttDependencyDescriptor>

updatedDependencies

List<GanttDependencyDescriptor>

deletedDependencies

List<GanttDependencyDescriptor>

Properties

CreatedDependencies

Defines the newly created dependencies. See GanttDependencyDescriptor.

Declaration

cs-api-definition
public List<GanttDependencyDescriptor> CreatedDependencies { get; set; }

Property Value

List<GanttDependencyDescriptor>

DeletedDependencies

Defines the deleted dependencies. See GanttDependencyDescriptor.

Declaration

cs-api-definition
public List<GanttDependencyDescriptor> DeletedDependencies { get; set; }

Property Value

List<GanttDependencyDescriptor>

Item

The task model that the user updated.

Declaration

cs-api-definition
public object Item { get; set; }

Property Value

object

ParentItem

The task model of the parent item the user updated.

Declaration

cs-api-definition
public object ParentItem { get; set; }

Property Value

object

UpdatedDependencies

Defines the updated dependencies. See GanttDependencyDescriptor.

Declaration

cs-api-definition
public List<GanttDependencyDescriptor> UpdatedDependencies { get; set; }

Property Value

List<GanttDependencyDescriptor>