GanttControl.RemoveTaskFromTimeline(GanttControlNode) Method
In This Article
Hides the specified task from the timeline.
Namespace: DevExpress.XtraGantt
Assembly: DevExpress.XtraGantt.v24.2.dll
NuGet Package: DevExpress.Win.Gantt
#Declaration
public void RemoveTaskFromTimeline(
GanttControlNode node
)
#Parameters
Name | Type | Description |
---|---|---|
node | Gantt |
The task. |
#Remarks
// Hides the focused task from the timeline.
ganttControl1.RemoveTaskFromTimeline(ganttControl1.FocusedNode as GanttControlNode);
Read the following topic for detailed information and examples: Timeline.
See Also