AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Controles, páginas y ventanas / Funciones Diagrama de Gantt
  • Example for the GanttListTask function
GanttListTask (Example)
Example for the GanttListTask function
The following example allows you to retrieve a task when it is hovered over, using the Mouse hover code (WM_MOUSEMOVE) on the Table control.
arrList is array of GanttTask
sMyColumn is string
 
// Retrieve the name of the hovered column
sMyColumn = TableInfoXY(TABLE_Gantt, tiColName, MouseXPos(), MouseYPos())
IF {sMyColumn}..Type = typGantt THEN
 
// Retrieves the list of tasks
arrList = GanttListTask(COL_Gantt, ganttHoveredTask)
IF arrList.Occurrence = 1 THEN
Trace("Hovered task: " + arrList[1].Title)
END
END
Versión mínima requerida
  • Versión 19
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 27/05/2022

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