MailEnvelope2.Visible Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the visibility of the custom e-mail message created with a MailEnvelopeObject object that is associated with a WindowObject object.
public:
property bool Visible { bool get(); void set(bool value); };
public bool Visible { get; set; }
member this.Visible : bool with get, set
Public Property Visible As Boolean
Property Value
true if the envelope is visible; otherwise false.
Implements
Examples
In the following example, the Visible property of the MailEnvelope object is used to display an e-mail message in Microsoft Office Outlook 2003:
MailEnvelopeObject myEnv = thisApplication.ActiveWindow.MailEnvelope;
myEnv.<span class="label">Visible</span> = true;
Remarks
When the Visible property of the MailEnvelope object is set to true, the custom e-mail message will be displayed using Microsoft Office Outlook 2003. If there is no default e-mail editor configured, the Visible property will return an error.