Partager via


MailEnvelope2.AttachmentType Propriété

Définition

Obtient ou définit le type de fichier à joindre au message électronique.

public:
 property Microsoft::Office::Interop::InfoPath::XdAttachmentType AttachmentType { Microsoft::Office::Interop::InfoPath::XdAttachmentType get(); void set(Microsoft::Office::Interop::InfoPath::XdAttachmentType value); };
public Microsoft.Office.Interop.InfoPath.XdAttachmentType AttachmentType { get; set; }
member this.AttachmentType : Microsoft.Office.Interop.InfoPath.XdAttachmentType with get, set
Public Property AttachmentType As XdAttachmentType

Valeur de propriété

XdAttachmentType qui spécifie le type de fichier joint au message électronique.

Exemples

L'exemple suivant définit une référence à l'objet MailEnvelope2, définit des propriétés d'enveloppe, puis affiche l'enveloppe du message électronique.

MailEnvelope2 myEnv = 
   (MailEnvelope2)thisApplication.ActiveWindow.MailEnvelope;
myEnv.To = "someone@example.com";
myEnv.<span class="label">CC</span> = "someone@example.com";
myEnv.BCC = "someone@example.com";
myEnv.Subject = "Test e-mail message";
myEnv.Intro = "This is the InfoPath form you requested.";
myEnv.<span class="label">AttachmentType</span> = XdAttachmentType.xdXmlXsn;

// Display form with e-mail envelope.
myEnv.Visible = true;

Remarques

À définir sur XdAttachmentType.xdXml pour envoyer uniquement le fichier de formulaire (.xml). À définir sur XdAttachmentType.xdXmlXsn pour envoyer le fichier de formulaire (.xml) avec le fichier de modèle de formulaire (.xsn) associé.

S’applique à