次の方法で共有


_ExternalApplication.Quit メソッド

定義

Microsoft InfoPath アプリケーションを終了します。

public:
 void Quit();
public void Quit ();
abstract member Quit : unit -> unit
Public Sub Quit ()

次の例では、C# プログラミング言語で記述されているオブジェクトの Quit メソッドを ExternalApplication 使用して InfoPath を閉じます。

private void AutomateInfoPathForm()
{
 ExternalApplication infoPath = new ExternalApplicationClass();
 // Open an InfoPath form.
 infoPath.Open(@"C:\My Forms\Form1.xml", 1);

 // Close the InfoPath form.
 infoPath.Close(@"C:\My Forms\Form1.xml");

 // Quit the InfoPath application.
 infoPath.<span class="label">Quit</span>();
}

: 上記の例では、名前空間が Microsoft.Office.Interop.InfoPath 使用されており、Microsoft InfoPath 3.0 タイプ ライブラリが参照されていることを前提としています。

次の例では、C# プログラミング言語で記述されているオブジェクトの Quit メソッドを ExternalApplication 使用して InfoPath を閉じます。

private void AutomateInfoPathForm()
{
 ExternalApplication infoPath = new ExternalApplicationClass();
 // Open an InfoPath form.
 infoPath.Open(@"C:\My Forms\Form1.xml", 1);

 // Close the InfoPath form.
 infoPath.Close(@"C:\My Forms\Form1.xml");

 // Quit the InfoPath application.
 infoPath.<span class="label">Quit</span>();
}

: 上記の例では、名前空間が Microsoft.Office.Interop.InfoPath 使用されており、Microsoft InfoPath 3.0 タイプ ライブラリが参照されていることを前提としています。

注釈

Quit メソッドをClose(String)使用する前に メソッドを使用した場合、フォームで変更されたデータは保存されず、ユーザーに保存を求めもされません。 一方、Close メソッドを使用せず、Quit メソッドのみを使用した場合は、InfoPath アプリケーションを終了する前に、ユーザーにフォームの保存を確認するメッセージが表示されます。

適用対象