AppointmentItem.PropertyChange 事件 (Outlook)

当显式内置属性 (例如,更改父对象的实例的 Subject) 时发生。

语法

expressionPropertyChange( _Name_ )

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

参数

名称 必需/可选 数据类型 说明
Name 必需 String 已更改的属性的名称。

备注

属性名被传递给事件,这样用户就可以确定哪个属性被更改。

示例

此 Visual Basic for Applications (VBA) 示例使用 PropertyChange 事件防止有人禁用某项提醒。

Public WithEvents myItem As Outlook.AppointmentItem 
 
 
 
Sub Initialize_handler() 
 
 Set myItem = Application.GetNamespace("MAPI").GetDefaultFolder(olFolderCalendar).Items("Status Meeting") 
 
End Sub 
 
 
 
Private Sub myItem_PropertyChange(ByVal Name As String) 
 
 Select Case Name 
 
 Case "ReminderSet" 
 
 MsgBox "You may not remove a reminder on this item." 
 
 myItem.ReminderSet = True 
 
 Case Else 
 
 End Select 
 
End Sub

另请参阅

AppointmentItem 对象

支持和反馈

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