AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Controles, páginas y ventanas / Funciones Diagrama de Gantt
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 = 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:
ganttLinkAllLists all the links.
ganttLinkDestinationLists 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.
Component: wd290mdl.dll
Versión mínima requerida
  • Versión 26
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 21/06/2023

Señalar un error o enviar una sugerencia | Ayuda local