Objet SharingItem (Outlook)
Représente un message de partage dans un dossier Boîte de réception.
Remarques
Utilisez la méthode CreateSharingItem de l’objet NameSpace pour créer un objet SharingItem qui représente une nouvelle demande de partage ou une invitation de partage.
Utilisez Item (index), où index est le numéro d’index d’un message de partage ou une valeur utilisée pour correspondre à la propriété par défaut d’un message, pour renvoyer un objet SharingItem unique à partir d’un dossier Boîte de réception.
Exemple
L’exemple de code Visual Basic pour Applications (VBA) suivant montre comment créer et afficher une nouvelle invitation de partage pour le dossier Tâches.
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
Événements
- AfterWrite
- AttachmentAdd
- AttachmentRead
- AttachmentRemove
- BeforeAttachmentAdd
- BeforeAttachmentPreview
- BeforeAttachmentRead
- BeforeAttachmentSave
- BeforeAttachmentWriteToTempFile
- BeforeAutoSave
- BeforeCheckNames
- BeforeDelete
- BeforeRead
- Close
- CustomAction
- CustomPropertyChange
- Transférer
- Open
- PropertyChange
- Lire
- ReadComplete
- Reply
- ReplyAll
- Send
- Unload
- Write
Méthodes
- AddBusinessCard
- Allow
- ClearConversationIndex
- ClearTaskFlag
- Close
- Copy
- Delete
- Deny
- Display
- Transférer
- GetConversation
- MarkAsTask
- Move
- OpenSharedFolder
- PrintOut
- Reply
- ReplyAll
- Save
- SaveAs
- Send
- ShowCategoriesDialog
Propriétés
- Actions
- AllowWriteAccess
- AlternateRecipientAllowed
- Application
- Pièces jointes
- AutoForwarded
- BCC
- BillingInformation
- Body
- BodyFormat
- Catégories
- 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
- Parent
- Permission
- PermissionService
- PermissionTemplateGuid
- PropertyAccessor
- ReadReceiptRequested
- ReceivedByEntryID
- ReceivedByName
- ReceivedOnBehalfOfEntryID
- ReceivedOnBehalfOfName
- ReceivedTime
- RecipientReassignmentProhibited
- Destinataires
- 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
- Session
- SharingProvider
- SharingProviderGuid
- Size
- Objet
- Submitted
- TaskCompletedDate
- TaskDueDate
- TaskStartDate
- TaskSubject
- À
- ToDoTaskOrdinal
- Type
- UnRead
- UserProperties
Voir aussi
Assistance et commentaires
Avez-vous des questions ou des commentaires sur Office VBA ou sur cette documentation ? Consultez la rubrique concernant l’assistance pour Office VBA et l’envoi de commentaires afin d’obtenir des instructions pour recevoir une assistance et envoyer vos commentaires.