次の方法で共有


MailEnvelope2.Subject プロパティ

定義

オブジェクトに関連付けられている オブジェクトで使用されるサブジェクト値をMailEnvelopeObjectWindowObject取得または設定します。

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

プロパティ値

件名の行。

実装

MailEnvelopeObject myEnv = thisApplication.ActiveWindow.MailEnvelope;
myEnv.To = "someone@example.com";
myEnv.CC = "someone@example.com";
myEnv.BCC = "someone@example.com";
myEnv.<span class="label">Subject</span> = "Test e-mail message";

注釈

MailEnvelope オブジェクトでは、電子メール メッセージ本文の作成をプログラムで行うことができません。 Microsoft Outlook で電子メール メッセージが表示された後、ユーザーは本文テキストを入力します。

適用対象