Inspector.SetSchedulingStartTime 方法 (Outlook)

在检查器的 "调度助手" 选项卡上的空/闲网格中,设置会议项目的开始时间。

语法

expressionSetSchedulingStartTime( _Start_ )

表达 一个代表“Inspector”对象的变量。

参数

名称 必需/可选 数据类型 说明
Start 必需 日期 检查器的 "调度助手" 选项卡所显示的与会者空/闲时间时间范围的开始时间。

备注

由父 检查器 对象的 CurrentItem 属性指定的对象必须是 AppointmentItemMeetingItem 。 必须在检查器中显示 日程安排助理选项卡,否则Microsoft Outlook将引发错误。 如果 Outlook 不能显示该项目类型的 日程安排助理选项卡上,Outlook 会显示以下错误: 在会议项目上的日程安排助理显示时只能设置计划开始时间。

示例

下面的代码示例在 Microsoft Visual Basic for Applications (VBA) 演示了如何使用 SetSchedulingStartTime 方法在 AppointmentItem日程安排助理选项卡上设置的日程排定的开始时间。 现在,从约会开始时间设置为一个月,从现在中,将安排的开始时间也设置为一个月。

Sub DemoSetSchedulingStartTime() 
 
 Dim oAppt As Outlook.AppointmentItem 
 
 Dim oInsp As Outlook.inspector 
 
 
 
 ' Create and display appointment. 
 
 Set oAppt = Application.CreateItem(olAppointmentItem) 
 
 oAppt.MeetingStatus = olMeeting 
 
 oAppt.Subject = "Test Appointment" 
 
 oAppt.Start = DateAdd("m", 1, Now) 
 
 ' Display the appointment in the Appointment tab of the inspector. 
 
 oAppt.Display 
 
 
 
 Set oInsp = oAppt.GetInspector 
 
 ' Switch to the Scheduling Assistant tab in that inspector. 
 
 oInsp.SetCurrentFormPage ("Scheduling Assistant") 
 
 ' Set the appointment start time in the Scheduling Assistant. 
 
 oInsp.SetSchedulingStartTime (DateAdd("m", 1, Now)) 
 
End Sub

另请参阅

检查对象

支持和反馈

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