TimelineBar.RemoveTask(GanttControlNode) Method
In This Article
Hides the specified task from the timeline bar.
Namespace: DevExpress.XtraGantt.TimeLine
Assembly: DevExpress.XtraGantt.v24.2.dll
NuGet Package: DevExpress.Win.Gantt
#Declaration
public void RemoveTask(
GanttControlNode node
)
#Parameters
Name | Type | Description |
---|---|---|
node | Gantt |
The task. |
#Remarks
The RemoveTask
method removes the specified task from the TimelineBar.Nodes collection and hides the task from the timeline bar.
// Hides the first task from the timeline bar.
timelineBar.RemoveTask(timelineBar.Nodes[0]);
Read the following topic for detailed information and examples: Timeline.
See Also