ChildTasksCollector Class |
Namespace: Aspose.Tasks.Util
The ChildTasksCollector type exposes the following members.
Name | Description | |
---|---|---|
![]() ![]() | ChildTasksCollector |
Initializes a new instance of the ChildTasksCollector class.
|
Name | Description | |
---|---|---|
![]() ![]() | Tasks |
Gets a list collected child objects (tasks).
|
Name | Description | |
---|---|---|
![]() ![]() | Alg |
Processes the specified object.
(Overrides TreeAlgorithmBaseTAlg(T, Int32).) |
![]() | Equals | (Inherited from Object.) |
![]() | Finalize | (Inherited from Object.) |
![]() | GetHashCode | (Inherited from Object.) |
![]() | GetType | (Inherited from Object.) |
![]() | MemberwiseClone | (Inherited from Object.) |
![]() ![]() | PostAlg |
Called after processing of a node of a tree.
(Inherited from TreeAlgorithmBaseT.) |
![]() ![]() | PreAlg |
Called before processing of a node of a tree.
(Inherited from TreeAlgorithmBaseT.) |
![]() | ToString | (Inherited from Object.) |
var project = new Project(DataDir + "ParentChildTasks.mpp"); var collector = new ChildTasksCollector(); TaskUtils.Apply(project.RootTask, collector, 0); // Parse through all the collected tasks foreach (var task in collector.Tasks) { Console.WriteLine(task.Get(Tsk.Name)); }