MailEnvelope2.BCC - Propriété
Obtient ou définit la valeur de copie carbone invisible (Cci) utilisée dans MailEnvelopeObject qui est associé à un objet WindowObject .
Espace de noms : Microsoft.Office.Interop.InfoPath
Assembly : Microsoft.Office.Interop.InfoPath (dans Microsoft.Office.Interop.InfoPath.dll)
Syntaxe
'Déclaration
Property BCC As String
Get
Set
'Utilisation
Dim instance As MailEnvelope2
Dim value As String
value = instance.BCC
instance.BCC = value
string BCC { get; set; }
Valeur de propriété
Type : System.String
Les adresses du champ Cci (copie carbone invisible).
Implémentations
Remarques
Les valeurs définies pour la propriété BCC doivent être une chaîne d'adresses électroniques valides. Vous pouvez spécifier plusieurs adresses électroniques en les séparant par un point-virgule (« ; »).
Exemples
MailEnvelopeObject myEnv = thisApplication.ActiveWindow.MailEnvelope;
myEnv.To = "someone@example.com";
myEnv.CC = "someone@example.com";
myEnv.BCC = "someone@example.com";
myEnv.Subject = "Test e-mail message";