In Ms Project I'm able to define the number of working hours for a specific day (ie for day 16.01.2008 resource will work only 4 hours). I'm trying to do the same in Aspose.tasks but it only allow me to do this for all mondays, tuesdays, etc...
I've checked several posts where you define default hours per day (when you say day you mean Monday, Tuesday, etc...).
ch = cal.GetCalendarHours(Aspose.Tasks.DayOfWeek.Wednesday);
ch.FromTime1 = System.DateTime.Parse("08:00:00");
ch.ToTime1 = System.DateTime.Parse("12:00:00");
ch.FromTime2 = System.DateTime.Parse("13:00:00");
ch.ToTime2 = System.DateTime.Parse("17:00:00");
Can I do this for a specific day?