Reminder.Snooze 方法 (Outlook)

将提醒延迟一定的时间。

语法

expressionSnooze( _SnoozeTime_ )

表达 返回 Reminder 对象的表达式。

参数

名称 必需/可选 数据类型 说明
推迟时间 可选 Variant 指示提醒延迟的时间(以分钟计)。 默认值为 5 分钟。

备注

相当于用户单击 "暂停" 按钮。

如果当前提醒处于非活动状态,该方法将执行失败。

示例

以下 Microsoft Visual Basic for Applications (VBA) 示例将所有活动提醒延迟指定的时间。

Sub SnoozeReminders() 
 
 'Delays all reminders by a specified amount of time 
 
 Dim objRems As Outlook.Reminders 
 
 Dim objRem As Outlook.Reminder 
 
 Dim varTime As Variant 
 
 
 
 Set objRems = Application.Reminders 
 
 varTime = InputBox("Type the number of minutes to delay") 
 
 For Each objRem In objRems 
 
 If objRem.IsVisible = True Then 
 
 objRem.Snooze (varTime) 
 
 End If 
 
 Next objRem 
 
End Sub

另请参阅

提醒对象

支持和反馈

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