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
Forward
Open
PropertyChange
読み取り
ReadComplete
Reply
ReplyAll
Send
Unload
Write

メソッド

名前
Close
Copy
Delete
Display
GetAssociatedTask
GetConversation
Move
PrintOut
Save
SaveAs
ShowCategoriesDialog

プロパティ

Name
Actions
アプリケーション
添付ファイル
AutoResolvedWinner
BillingInformation
Body
Categories
クラス
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
件名
UnRead
UserProperties

関連項目

Outlook オブジェクト モデル リファレンス

サポートとフィードバック

Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。