AppointmentItem.Save 方法 (Outlook)

将 Microsoft Outlook项目保存到当前文件夹中,如果是新项目,则保存到该项目类型的 Outlook 默认文件夹中。

语法

表达式

表达 一个代表 AppointmentItem 对象的变量。

示例

本 Microsoft Visual Basic for Applications (VBA) 示例将创建一个约会项目并在保存此项目之前设置 AppointmentItem.ReminderSet 属性。

Sub AddAppointment() 
 Dim apti As Outlook.AppointmentItem 
 
 Set apti = Application.CreateItem(olAppointmentItem) 
 apti.Subject = "Car Servicing" 
 apti.Start = DateAdd("n", 16, Now) 
 apti.End = DateAdd("n", 60, apti.Start) 
 apti.ReminderSet = True 
 apti.ReminderMinutesBeforeStart = 60 
 apti.Save 
End Sub

另请参阅

AppointmentItem 对象

如何: 约会 XML 数据导入到 Outlook 约会对象

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。