WeeklyRepetition

WeeklyRepetition class

Represents a pattern which is based on weekdays.

public class WeeklyRepetition : WeeklyRepetitionBase

Constructors

NameDescription
WeeklyRepetition()Initializes a new instance of the WeeklyRepetition class.

Properties

NameDescription
RepetitionInterval { get; set; }Gets or sets a number of weeks which represents the interval in weeks between occurrences.
WeekDays { get; set; }Gets or sets a type of weekdays.

Examples

Shows how to create a recurring task.

var project = new Project(DataDir + "Blank2010.mpp");
var parameters = new RecurringTaskParameters
                     {
                         TaskName = "Recurring task",
                         Duration = project.GetDuration(1, TimeUnitType.Day),
                         RecurrencePattern = new WeeklyRecurrencePattern
                                                 {
                                                     Repetition = new WeeklyRepetition
                                                                      {
                                                                          RepetitionInterval = 2,
                                                                          WeekDays = WeekdayType.Sunday | WeekdayType.Monday | WeekdayType.Friday
                                                                      },
                                                     RecurrenceRange = new EndByRecurrenceRange
                                                                           {
                                                                               Start = new DateTime(2018, 7, 1, 8, 0, 0),
                                                                               Finish = new DateTime(2018, 7, 20, 17, 0, 0)
                                                                           }
                                                 },
                         IgnoreResourceCalendar = false
                     };

parameters.SetCalendar(project, "Standard");

project.RootTask.Children.Add(parameters);

See Also