|
|
|
|
|
<Gantt chart>.ListLink (Function) In french: <Diagramme de Gantt>.ListeLien Lists the links in a Gantt Chart column in a Table or TreeView Table control.
arrLinks is array of GanttLink
arrLinks = COL_Gantt.ListLink(ganttLinkDestination, "ID1")
Link is GanttLink
FOR EACH Link OF arrLinks
Trace("Linked to " + Link.SourceID)
END
Syntax
<Result> = <Gantt column>.LinkList(<Filter> [, <Destination Task identifier>])
<Result>: Array of GanttLink Name of the Array of GanttLink variable containing all the links found. <Gantt column>: Control name Name of the Gantt Chart column (in a Table or TreeView Table control) to be used. <Filter>: Integer constant Type of links to retrieve: | | ganttLinkAll | Lists all the links. | ganttLinkDestination | Lists all the links that point to the <Identifier of Destination Task> task. |
<Destination Task identifier>: Optional character string Identifier of the Destination task when using the ganttLinkDestination constant. This identifier corresponds to the ID property defined in the GanttTask variable.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|