|
|
|
|
|
GanttListLink (Function) In french: GanttListeLien Lists the links found in a Gantt Chart column found in a Table (or TreeView Table) control. // Lists all the links that point to the "ID1" task arrLinks is array of GanttLink arrLinks = GanttListLink(COL_Gantt, ganttLinkDestination, "ID1") Link is GanttLink FOR EACH Link OF arrLinks Trace("Linked to " + Link.SourceID) END Syntax
<Result> = GanttListLink(<Gantt column> , <Filter> [, <Identifier of Destination Task>])
<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. |
<Identifier of Destination Task>: 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…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|