ByYearDayRepetition Class |
Namespace: Aspose.Tasks
The ByYearDayRepetition type exposes the following members.
Name | Description | |
---|---|---|
![]() ![]() | ByYearDayRepetition |
Initializes a new instance of the ByYearDayRepetition class.
|
Name | Description | |
---|---|---|
![]() ![]() | DayPosition |
Gets or sets a position of day in a month on which the task must be recurring.
|
![]() ![]() | Month |
Gets or sets a month on which the task must be recurring.
|
Name | Description | |
---|---|---|
![]() | Equals | (Inherited from Object.) |
![]() | Finalize | (Inherited from Object.) |
![]() | GetHashCode | (Inherited from Object.) |
![]() | GetType | (Inherited from Object.) |
![]() | MemberwiseClone | (Inherited from Object.) |
![]() | ToString | (Inherited from Object.) |
var project = new Project(DataDir + "Project1.mpp"); var parameters = new RecurringTaskParameters { TaskName = "t1", Duration = project.GetDuration(1, TimeUnitType.Day), RecurrencePattern = new YearlyRecurrencePattern { Repetition = new ByYearDayRepetition { DayPosition = 1, Month = Month.July }, RecurrenceRange = new EndByRecurrenceRange { Start = new DateTime(2018, 7, 1, 8, 0, 0), Finish = new DateTime(2019, 7, 1, 17, 0, 0) } } }; project.RootTask.Children.Add(parameters); project.Save(OutDir + "CanAddRecurringTask_Years_YearDay_EndByRecurrenceRange_Test.mpp", SaveFileFormat.MPP);