Hi,
I downloaded an evaluation of Aspose.Email and played around with the MAPITask. I can set almost every property like “Subject”, “Body”, “Reminder” and “Status” just like Outlook. However, looks like there is no property I can set for “Priority” or “Importance” on this MAPITask class. Is there anyway I can set the “Priority” or “Importance” just like Outlook value for “High”, “Low” or “Normal”?
This is my current codes.
Task tsk = new Task();
MapiTask task = new MapiTask();
task.Subject = strSubject;
task.Body = strNotes;
task.StartDate = dtStartDate;
task.DueDate = dtDueDate;
task.DateCompleted = dtCompletedDate;
task.PercentComplete = 100;
task.ReminderSet = bReminderSet;
task.ReminderTime = dtReminderDate;
task.Save(msgSavePath, TaskSaveFormat.Msg);
Thanks.