Objeto MeetingItem (Outlook)

Representa un cambio en la carpeta Calendario del destinatario iniciado por otro usuario o como resultado de una acción de grupo.

Comentarios

A diferencia de lo que ocurre con otros objetos de Microsoft Outlook, no puede crear este objeto. Se crea automáticamente cuando se establece la propiedad MeetingStatus de un objeto AppointmentItem en olMeeting y se envía a uno o varios usuarios. Ellos lo reciben en sus bandejas de entrada como un objeto MeetingItem.

Utilice el GetAssociatedAppointment método para devolver el objeto AppointmentItem asociado con un objeto MeetingItem y trabajar directamente con el objeto AppointmentItem para responder a la solicitud.

Ejemplo:

En el ejemplo siguiente se utiliza el método CreateItem método para crear una cita. Se convierte en un objeto MeetingItem con un necesario y un asistente opcional cuando lo recibe en la Bandeja de entrada de cada uno de los destinatarios.

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

Eventos

Nombre
AfterWrite
AttachmentAdd
AttachmentRead
AttachmentRemove
BeforeAttachmentAdd
BeforeAttachmentPreview
BeforeAttachmentRead
BeforeAttachmentSave
BeforeAttachmentWriteToTempFile
BeforeAutoSave
BeforeCheckNames
BeforeDelete
BeforeRead
Close
CustomAction
CustomPropertyChange
Reenviar
Open
PropertyChange
Lectura
ReadComplete
Reply
ReplyAll
Send
Unload
Write

Métodos

Nombre
Close
Copy
Delete
Display
Reenviar
GetAssociatedAppointment
GetConversation
Move
PrintOut
Reply
ReplyAll
Save
SaveAs
Send
ShowCategoriesDialog

Propiedades

Nombre
Actions
Application
Archivos adjuntos
AutoForwarded
AutoResolvedWinner
BillingInformation
Body
Categorías
Class
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
Destinatarios
ReminderSet
ReminderTime
ReplyRecipients
RetentionExpirationDate
RetentionPolicyName
RTFBody
Saved
SaveSentMessageFolder
SenderEmailAddress
SenderEmailType
SenderName
SendUsingAccount
Sensitivity
Sent
SentOn
Session
Size
Subject
Submitted
UnRead
UserProperties

Consulte también

Referencia del modelo de objetos de Outlookpara miembros del objeto MeetingItem

Soporte técnico y comentarios

¿Tiene preguntas o comentarios sobre VBA para Office o esta documentación? Vea Soporte técnico y comentarios sobre VBA para Office para obtener ayuda sobre las formas en las que puede recibir soporte técnico y enviar comentarios.