Tâches et calendriers
Il est possible d’associer des calendriers à des tâches particulières dans Microsoft Project. Aspose.task prend en charge cette fonctionnalité.
Tâches avec calendriers
La classe TSK expose le champ Calendrier utilisé pour définir ou obtenir le calendrier associé à une tâche. Cette propriété accepte ou renvoie un objet Aspose.Tasks.Calendar.
Pour créer un calendrier pour une tâche dans le projet Microsoft:
Ouvrez un projet dans Microsoft Project.
To assign the calendar to a task, double-click the task in the Task Entry form.
Setting Task Calendar
Create a standard calendar and create a task. Assign the Calendar to the task.
1Project project = new Project();
2
3// Add task
4Task task = project.RootTask.Children.Add("Task1");
5
6// Create calendar and assign to task
7Calendar cal = project.Calendars.Add("TaskCal1");
8task.Set(Tsk.Calendar, cal);
Getting Task Calendar
Get task calendar by traversing the tasks in a project.
1Project project = new Project("New Project.mpp");
2
3// Declare ChildTasksCollector class object
4ChildTasksCollector collector = new ChildTasksCollector();
5
6// Use TaskUtils to get all children tasks in RootTask
7TaskUtils.Apply(project.RootTask, collector, 0);
8
9// Parse all the recursive children
10foreach (Task task in collector.Tasks)
11{
12 Calendar cal = task.Get(Tsk.Calendar);
13 Console.WriteLine("Task calendar name: {0}", cal == null ? "None" : cal.Name);
14}