New to Telerik UI for BlazorStart a free 30-day trial

The event arguments for the OnUpdate event.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class GanttUpdateEventArgs : EventArgs

Inheritance: objectEventArgsGanttUpdateEventArgs

Inherited Members EventArgs.Empty

Constructors

C#
public GanttUpdateEventArgs()
C#
public GanttUpdateEventArgs(object updatedItem, object parentItem, List<GanttDependencyDescriptor> createdDependencies, List<GanttDependencyDescriptor> updatedDependencies, List<GanttDependencyDescriptor> deletedDependencies)
Parameters:updatedItemobjectparentItemobjectcreatedDependenciesList<GanttDependencyDescriptor>updatedDependenciesList<GanttDependencyDescriptor>deletedDependenciesList<GanttDependencyDescriptor>

Properties

Defines the newly created dependencies. See GanttDependencyDescriptor.

C#
public List<GanttDependencyDescriptor> CreatedDependencies { get; set; }

Defines the deleted dependencies. See GanttDependencyDescriptor.

C#
public List<GanttDependencyDescriptor> DeletedDependencies { get; set; }

The task model that the user updated.

C#
public object Item { get; set; }

The task model of the parent item the user updated.

C#
public object ParentItem { get; set; }

Defines the updated dependencies. See GanttDependencyDescriptor.

C#
public List<GanttDependencyDescriptor> UpdatedDependencies { get; set; }