Objeto SharingItem (Outlook)
Representa uma mensagem de compartilhamento em uma pasta Caixa de Entrada.
Comentários
Use o método CreateSharingItem do objeto NameSpace para criar um objeto SharingItem que representa uma nova solicitação de compartilhamento ou convite de compartilhamento.
Use Item (índice), em que o índice é o número de índice de uma mensagem de compartilhamento ou um valor usado para corresponder à propriedade padrão de uma mensagem, para retornar um único objeto SharingItem de uma pasta caixa de entrada.
Exemplo
O exemplo a seguir do Visual Basic for Applications (VBA) cria e exibe um novo pedido de compartilhamento da pasta Tarefas.
Public Sub CreateTasksSharingItem()
On Error GoTo ErrRoutine
Dim mapiNamespace As Outlook.NameSpace
Set mapiNamespace = Outlook.Application.GetNamespace("MAPI")
Dim tasksFolder As Outlook.Folder
Set tasksFolder = mapiNamespace.GetDefaultFolder(Outlook.olFolderTasks)
Dim invitation As Outlook.SharingItem
Set invitation = appNamespace.CreateSharingItem(tasksFolder)
invitation.Display
EndRoutine:
Exit Sub
ErrRoutine:
MsgBox Err.Description, vbOKOnly, Err.Number & " - " & Err.Source
Resume EndRoutine
End Sub
Eventos
- AfterWrite
- AttachmentAdd
- AttachmentRead
- AttachmentRemove
- BeforeAttachmentAdd
- BeforeAttachmentPreview
- BeforeAttachmentRead
- BeforeAttachmentSave
- BeforeAttachmentWriteToTempFile
- BeforeAutoSave
- BeforeCheckNames
- BeforeDelete
- BeforeRead
- Close
- CustomAction
- CustomPropertyChange
- Encaminhar
- Open
- PropertyChange
- Leitura
- ReadComplete
- Responder
- ReplyAll
- Send
- Unload
- Escrever
Métodos
- AddBusinessCard
- Permitir
- ClearConversationIndex
- ClearTaskFlag
- Close
- Copiar
- Delete
- Negar
- Exibição
- Encaminhar
- GetConversation
- MarkAsTask
- Move
- OpenSharedFolder
- PrintOut
- Responder
- ReplyAll
- Save
- SaveAs
- Send
- ShowCategoriesDialog
Propriedades
- Actions
- AllowWriteAccess
- AlternateRecipientAllowed
- Application
- Anexos
- AutoForwarded
- BCC
- BillingInformation
- Body
- BodyFormat
- Categorias
- CC
- Classe
- Companies
- Conflicts
- ConversationID
- ConversationIndex
- ConversationTopic
- CreationTime
- DeferredDeliveryTime
- DeleteAfterSubmit
- DownloadState
- EntryID
- ExpiryTime
- FlagRequest
- FormDescription
- GetInspector
- HTMLBody
- Importance
- InternetCodepage
- IsConflict
- IsMarkedAsTask
- ItemProperties
- LastModificationTime
- MarkForDownload
- MessageClass
- Mileage
- NoAging
- OriginatorDeliveryReportRequested
- OutlookInternalVersion
- OutlookVersion
- Responsável
- Permissão
- PermissionService
- PermissionTemplateGuid
- PropertyAccessor
- ReadReceiptRequested
- ReceivedByEntryID
- ReceivedByName
- ReceivedOnBehalfOfEntryID
- ReceivedOnBehalfOfName
- ReceivedTime
- RecipientReassignmentProhibited
- Destinatários
- ReminderOverrideDefault
- ReminderPlaySound
- ReminderSet
- ReminderSoundFile
- ReminderTime
- RemoteID
- RemoteName
- RemotePath
- RemoteStatus
- ReplyRecipientNames
- ReplyRecipients
- RequestedFolder
- RetentionExpirationDate
- RetentionPolicyName
- RTFBody
- Saved
- SaveSentMessageFolder
- SenderEmailAddress
- SenderEmailType
- SenderName
- SendUsingAccount
- Sensitivity
- Sent
- SentOn
- SentOnBehalfOfName
- Sessão
- SharingProvider
- SharingProviderGuid
- Tamanho
- Subject
- Submitted
- TaskCompletedDate
- TaskDueDate
- TaskStartDate
- TaskSubject
- To
- ToDoTaskOrdinal
- Type
- UnRead
- UserProperties
Confira também
Suporte e comentários
Tem dúvidas ou quer enviar comentários sobre o VBA para Office ou sobre esta documentação? Confira Suporte e comentários sobre o VBA para Office a fim de obter orientação sobre as maneiras pelas quais você pode receber suporte e fornecer comentários.