ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Gantt Chart functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Lists the links found in a Gantt Chart column found in a Table (or TreeView Table) control.
Example
// 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:
ganttLinkAllLists all the links.
ganttLinkDestinationLists 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.
Component: wd290mdl.dll
Minimum version required
  • Version 19
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/19/2023

Send a report | Local help