close method

Closes the current browser window or HTML Application (HTA).

Closes the app without prompting the user. To the user, it appears as though the app has crashed.

Syntax

HRESULT retVal = object.close();

Parameters

This method has no parameters.

Return value

Type: HRESULT

If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.

Standards information

There are no standards that apply here.

Remarks

How a window is closed programmatically determines whether the user is prompted with a confirmation dialog box:

  • Invoking the IHTMLWindow2::close method on a window not opened with script displays a confirmation dialog box. Using script to close the last running instance of Windows Internet Explorer also opens the confirmation dialog box.
  • Invoking the IHTMLWindow2::close method on an HTA closes the application without prompting the user because the HTA is trusted and follows a different security model. For more information on the security model of HTAs, please refer to The Power of Trust: HTAs and Security.

Using the close method in a Windows app using JavaScript

Invoking the IHTMLWindow2::close method on a Windows app using JavaScript closes the app without prompting the user.

It is against Windows Store policy to programmatically close your app. The only time an app should programmatically close is when there is an unrecoverable error, in which case the app should throw an unhandled exception or use the MSApp.terminateApp method.

In you use IHTMLWindow2::close, it appears as a crash to the user is logged as a crash in the developer’s telemetry data on the Windows Store dashboard.