Hi Aspose Support Team,
Please assist on below query,
Query 1. Will the WeekStartDay would be the day on the Task tart date? In that case are this property dependent to the Mapi Task Start Day.
Query 2. Suppose I want to set MapiTask recurrence End Type as End After Date (MapiCalendarRecurrenceEndType.EndAfterDate) then how to set the End date?
Please see the End By option in daily recurrence with End date in Outlook.
// Set the daily recurrence
var rec = new MapiCalendarDailyRecurrencePattern
{
PatternType = MapiCalendarRecurrencePatternType.Day,
Period = 1,
WeekStartDay = DayOfWeek.Sunday,
EndType = MapiCalendarRecurrenceEndType.EndAfterDate,
OccurrenceCount = 0,
};
Thanks,
Vipin Panwar