Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

GanttControl.GetDependencyRow(Int32, Int32) Method

Returns an Object in the bound data source that contains data for the specified dependency.

Namespace: DevExpress.XtraGantt

Assembly: DevExpress.XtraGantt.v24.2.dll

NuGet Package: DevExpress.Win.Gantt

#Declaration

public object GetDependencyRow(
    int predecessorNodeId,
    int successorNodeId
)

#Parameters

Name Type Description
predecessorNodeId Int32

An integer value that specifies the predecessor node’s Id property.

successorNodeId Int32

An integer value that specifies the successor node’s Id property.

#Returns

Type Description
Object

An object that specifies a row of data in a data source.

#Remarks

Use the following methods to get an object that contains data for a specific dependency:

To specify the node in the method’s parameter, use the node’s Id property value.

The SetDependency(GanttControlNode, GanttControlNode, DependencyType, TimeSpan) method allows you to specify a dependency in code.

You can also use the following methods to get an object that contains data for a specific node:

See Also