MeetingItem オブジェクト (Outlook)

別のユーザーやグループの操作による受信者の予定表フォルダーへの変更を表します。

注釈

他の Microsoft Outlook オブジェクトと異なり、このオブジェクトを作成することはできません。 AppointmentItem オブジェクトの MeetingStatus プロパティを olMeeting に設定し、1 人以上のユーザーに送信すると、自動的に作成されます。 ユーザーは MeetingItem として受信トレイに受信します。

GetAssociatedAppointment メソッドを使用して、MeetingItem オブジェクトに関連付けられている AppointmentItem オブジェクトを取得し、AppointmentItem オブジェクトと直接連携して要求に応答します。

次の例では、 CreateItem メソッドを使用して予定を作成します。 これは、各受信者の受信トレイに受信されると、必須出席者と任意出席者の両方を含む MeetingItem になります。

Set myItem = myOlApp.CreateItem(olAppointmentItem) 
 
myItem.MeetingStatus = olMeeting 
 
myItem.Subject = "Strategy Meeting" 
 
myItem.Location = "Conference Room B" 
 
myItem.Start = #9/24/97 1:30:00 PM# 
 
myItem.Duration = 90 
 
Set myRequiredAttendee = myItem.Recipients.Add("Nate _ 
 
 Sun") 
 
myRequiredAttendee.Type = olRequired 
 
Set myOptionalAttendee = myItem.Recipients.Add("Kevin _ 
 
 Kennedy") 
 
myOptionalAttendee.Type = olOptional 
 
Set myResourceAttendee = _ 
 
 myItem.Recipients.Add("Conference Room B") 
 
myResourceAttendee.Type = olResource 
 
myItem.Send

イベント

名前
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
Forward
GetAssociatedAppointment
GetConversation
Move
PrintOut
Reply
ReplyAll
Save
SaveAs
Send
ShowCategoriesDialog

プロパティ

Name
Actions
アプリケーション
添付ファイル
AutoForwarded
AutoResolvedWinner
BillingInformation
Body
Categories
クラス
Companies
Conflicts
ConversationID
ConversationIndex
ConversationTopic
CreationTime
DeferredDeliveryTime
DeleteAfterSubmit
DownloadState
EntryID
ExpiryTime
FormDescription
GetInspector
Importance
IsConflict
IsLatestVersion
ItemProperties
LastModificationTime
MarkForDownload
MeetingWorkspaceURL
MessageClass
Mileage
NoAging
OriginatorDeliveryReportRequested
OutlookInternalVersion
OutlookVersion
Parent
PropertyAccessor
ReceivedTime
受信者
ReminderSet
ReminderTime
ReplyRecipients
RetentionExpirationDate
RetentionPolicyName
RTFBody
Saved
SaveSentMessageFolder
SenderEmailAddress
SenderEmailType
SenderName
SendUsingAccount
Sensitivity
Sent
SentOn
Session
Size
件名
Submitted
UnRead
UserProperties

関連項目

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

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

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