View.ShowMailItem(String, String, String, String, String) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
現在のビューが入った電子メール メッセージを作成します。
public:
abstract void ShowMailItem(System::String ^ destinationTo, System::String ^ destinationCC, System::String ^ destinationBcc, System::String ^ subject, System::String ^ body);
public abstract void ShowMailItem (string destinationTo, string destinationCC, string destinationBcc, string subject, string body);
abstract member ShowMailItem : string * string * string * string * string -> unit
Public MustOverride Sub ShowMailItem (destinationTo As String, destinationCC As String, destinationBcc As String, subject As String, body As String)
パラメーター
- destinationTo
- String
電子メール メッセージの "宛先" フィールドのアドレス。
- destinationCC
- String
電子メール メッセージの CC フィールドのアドレス。
- destinationBcc
- String
電子メール メッセージの BCC フィールドのアドレス。
- subject
- String
電子メール メッセージの "件名" フィールド。
- body
- String
電子メール メッセージの本文のテキスト。
例外
このメソッドに渡されるパラメーターは null 参照です (Visual Basic では Nothing)。
このメソッドに渡されたパラメーターは有効ではありません。 たとえば、型または形式が正しくありません。
例
次の例では、 クラスの ShowMailItem メソッドを View 使用して、現在のビューのメール メッセージを作成します。
this.CurrentView,ShowMailItem("someone@example.com", null, null,
"Sample InfoPath Form", "This is a sample InfoPath form.");
Me.CurrentView,ShowMailItem("someone@example.com", String.Empty, _
String.Empty, "Sample InfoPath Form",
"This is a sample InfoPath form.");
注釈
このメンバは、現在開いているフォームと同じドメインで実行中のフォーム、またはクロスドメインのアクセス許可が与えられたフォームだけがアクセスできます。
この型またはメンバーには、Microsoft InfoPath Filler で開いたフォームで実行されるコードからのみアクセスできます。