MailEnvelope2.AttachmentType プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
電子メール メッセージに添付されるファイルの種類を取得または設定します。
public:
property Microsoft::Office::Interop::InfoPath::XdAttachmentType AttachmentType { Microsoft::Office::Interop::InfoPath::XdAttachmentType get(); void set(Microsoft::Office::Interop::InfoPath::XdAttachmentType value); };
public Microsoft.Office.Interop.InfoPath.XdAttachmentType AttachmentType { get; set; }
member this.AttachmentType : Microsoft.Office.Interop.InfoPath.XdAttachmentType with get, set
Public Property AttachmentType As XdAttachmentType
プロパティ値
XdAttachmentType電子メール メッセージに添付されるファイルの種類を指定する 。
例
次の例では、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.Intro = "This is the InfoPath form you requested.";
myEnv.<span class="label">AttachmentType</span> = XdAttachmentType.xdXmlXsn;
// Display form with e-mail envelope.
myEnv.Visible = true;
注釈
フォーム ファイル (.xml) のみを送信するには XdAttachmentType.xdXml を設定します。 フォーム ファイル (.xml)、およびフォーム ファイルに関連するフォーム テンプレート ファイル (.xsn) を送信するには XdAttachmentType.xdXmlXsn に設定します。