TaskRequestItem 对象 (Outlook)

代表对收件人的任务列表的更改,此更改可由另一方启动或者是一组任务的结果。

备注

其他Microsoft Outlook与对象不同,您无法创建此对象。 当发送方应用 分配发送 方法对 TaskItem 在收件人的收件箱中收到该项目时,将创建要分配 (委派) 给其他用户, TaskRequestItem 相关联的任务对象。

使用 GetAssociatedTask 方法返回 TaskItem 对象,并直接处理 TaskItem 对象来响应请求。

示例

下面的 Visual Basic for Applications (VBA) 示例创建一个简单的任务,将它赋给另一个用户,并将其发送。 当任务请求到达收件人的收件箱时,接收为 TaskRequestItem

Sub SendTask() 
 
 Dim myItem As Outlook.TaskItem 
 
 Dim myDelegate As Outlook.Recipient 
 
 
 
 Set myItem = Application.CreateItem(olTaskItem) 
 
 myItem.Assign 
 
 Set myDelegate = myItem.Recipients.Add("Jeff Smith") 
 
 myItem.Subject = "Prepare Agenda For Meeting" 
 
 myItem.DueDate = #9/20/97# 
 
 myItem.Send 
 
End Sub

事件

名称
AfterWrite
AttachmentAdd
AttachmentRead
AttachmentRemove
BeforeAttachmentAdd
BeforeAttachmentPreview
BeforeAttachmentRead
BeforeAttachmentSave
BeforeAttachmentWriteToTempFile
BeforeAutoSave
BeforeCheckNames
BeforeDelete
BeforeRead
Close
CustomAction
CustomPropertyChange
转发
Open
PropertyChange
读取
ReadComplete
Reply
ReplyAll
Send
Unload
Write

方法

名称
Close
Copy
删除
Display
GetAssociatedTask
GetConversation
Move
PrintOut
Save
SaveAs
ShowCategoriesDialog

属性

名称
Actions
应用程序
附件
AutoResolvedWinner
BillingInformation
Body
类别
Companies
Conflicts
ConversationID
ConversationIndex
ConversationTopic
CreationTime
DownloadState
EntryID
FormDescription
GetInspector
Importance
IsConflict
ItemProperties
LastModificationTime
MarkForDownload
MessageClass
Mileage
NoAging
OutlookInternalVersion
OutlookVersion
Parent
PropertyAccessor
RTFBody
Saved
Sensitivity
Session
Size
Subject
UnRead
UserProperties

另请参阅

Outlook 对象模型引用

支持和反馈

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