次の方法で共有


MailEnvelope2.Intro プロパティ

定義

電子メール メッセージの本文の紹介文を取得または設定します。

public:
 property System::String ^ Intro { System::String ^ get(); void set(System::String ^ value); };
public string Intro { get; set; }
member this.Intro : string with get, set
Public Property Intro As String

プロパティ値

電子メール メッセージの本文の紹介文。

次の例では、MailEnvelope2 オブジェクトへの参照を設定し、封筒のプロパティを設定して、電子メールの封筒を表示します。

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.<span class="label">Intro</span> = "This is the InfoPath form you requested.";

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

適用対象