我成功地通过 C# 代码打开了新的约会,但由于某种原因,Who 字段不可编辑。我想通过给定日期的 C# 程序打开新的日历条目,并让用户填写主题、与会者、位置等。
LNDocument.ReplaceItemValue("Form", "Appointment");
//Type of the appointment, means:
LNDocument.ReplaceItemValue("AppointmentType", "Meeting");
LNDocument.ReplaceItemValue("Subject", "");
// Set Confidential Level (Public=1 or Private=0)
LNDocument.ReplaceItemValue("$PublicAccess", "1");
LNDocument.ReplaceItemValue("$ExpandGroups", "3");
//Add Start&End Time of your event
LNDocument.ReplaceItemValue("CALENDARDATETIME", StartDate);
LNDocument.ReplaceItemValue("StartDateTime", StartDate);
LNDocument.ReplaceItemValue("EndDateTime", EndDate);
LNDocument.ReplaceItemValue("StartDate", StartDate);
//Infos in The Body
LNDocument.ReplaceItemValue("Body", "");
LNDocument.ComputeWithForm(true, false);
LNDocument.Save(false, false, false);
System.Diagnostics.Process.Start(LNDocument.NotesURL);
任何帮助表示赞赏。