Freigeben über


_ExternalApplication.Close(String) Methode

Definition

Schließt das angegebene Microsoft InfoPath-Formular.

public:
 void Close(System::String ^ bstrDocumentURI);
public void Close (string bstrDocumentURI);
abstract member Close : string -> unit
Public Sub Close (bstrDocumentURI As String)

Parameter

bstrDocumentURI
String

Der Zeichenfolgenwert, der den URI (Uniform Resource Identifier) eines Formulars angibt.

Beispiele

Im folgenden Beispiel, das in der Programmiersprache C# geschrieben ist, wird die Close-Methode des ExternalApplication -Objekts verwendet, um das aktuell geöffnete Formular zu schließen:

private void AutomateInfoPathForm()
{
 ExternalApplication infoPath = new ExternalApplicationClass();
 // Open an InfoPath form.
 infoPath.Open(@"C:\My Forms\Form1.xml", 1);
 // Close the InfoPath form.
 infoPath.<span class="label">Close</span>(@"C:\My Forms\Form1.xml");
 // Quit the InfoPath application.
 infoPath.Quit();
}

Hinweis: Im obigen Beispiel wird davon ausgegangen, dass der Microsoft.Office.Interop.InfoPath Namespace verwendet wird und auf die Microsoft InfoPath 3.0-Typbibliothek verwiesen wird.

Im folgenden Beispiel, das in der Programmiersprache C# geschrieben ist, wird die Close-Methode des ExternalApplication -Objekts verwendet, um das aktuell geöffnete Formular zu schließen:

private void AutomateInfoPathForm()
{
 ExternalApplication infoPath = new ExternalApplicationClass();
 // Open an InfoPath form.
 infoPath.Open(@"C:\My Forms\Form1.xml", 1);
 // Close the InfoPath form.
 infoPath.<span class="label">Close</span>(@"C:\My Forms\Form1.xml");
 // Quit the InfoPath application.
 infoPath.Quit();
}

Hinweis: Im obigen Beispiel wird davon ausgegangen, dass der Microsoft.Office.Interop.InfoPath Namespace verwendet wird und auf die Microsoft InfoPath 3.0-Typbibliothek verwiesen wird.

Hinweise

Die Close-Methode schließt das momentan geöffnete Formular, ohne die InfoPath-Anwendung zu beenden. Bei Verwendung der Close-Methode wird das Formular ohne weiteres geschlossen, d. h., an den Formulardaten eventuell vorgenommene Änderungen werden nicht gespeichert.

Gilt für: