Window2.MailEnvelope Property
Gets a reference to the MailEnvelopeObject object associated with the window that is represented by the WindowObject object.
Namespace: Microsoft.Office.Interop.InfoPath.SemiTrust
Assembly: Microsoft.Office.Interop.InfoPath.SemiTrust (in Microsoft.Office.Interop.InfoPath.SemiTrust.dll)
Syntax
'Declaration
ReadOnly Property MailEnvelope As MailEnvelopeObject
Get
'Usage
Dim instance As Window2
Dim value As MailEnvelopeObject
value = instance.MailEnvelope
MailEnvelopeObject MailEnvelope { get; }
Property Value
Type: Microsoft.Office.Interop.InfoPath.SemiTrust.MailEnvelopeObject
Implements
Remarks
The MailEnvelope object can be used only with the editing window types; if used with a designing window type, it will return an error. It will also return an error if no form is open in the form area.
Important
This member can be accessed only by forms running in the same domain as the currently open form, or by forms that have been granted cross-domain permissions.
Examples
In the following example, the MailEnvelope property of the WindowObject object is used to set a reference to the MailEnvelopeObject object.
MailEnvelope myEnv = thisApplication.ActiveWindow.MailEnvelope;