TaskLink Constructors
Represents a Task Link object that is specific to a Gantt Chart diagram type.| Name | Parameters | Description |
|---|---|---|
| TaskLink() | none | Initializes a new instance of the TaskLink class with the default settings. |
| TaskLink(SeriesPoint, TaskLinkType) | point, linkType | Initializes a new instance of the TaskLink class, specifying the relation to the child point and the link type. |
| TaskLink(SeriesPoint) | point | Initializes a new instance of the TaskLink class, specifying the relation to the child point and the TaskLinkType.FinishToStart (default) link type. |
| TaskLink(Int32, TaskLinkType) | childPointID, linkType | Initializes a new instance of the TaskLink class, specifying the child point ID in a relation, and the link type. |
| TaskLink(Int32) | childPointID | Initializes a new instance of the TaskLink class, specifying the child point ID in a relation, and the TaskLinkType.FinishToStart (default) link type. |
See Also