Outlook) (Reminder.Snooze 方法
延遲提醒一段指定的時間。
語法
expression。 Snooze
( _SnoozeTime_
)
表達 會傳回 Reminder 物件的運算式。
參數
名稱 | 必要/選用 | 資料類型 | 描述 |
---|---|---|---|
SnoozeTime | 選用 | 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 支援與意見反應。