How to: Programmatically Close Workbooks
You can close the active workbook or you can specify a workbook to close.
Applies to: The information in this topic applies to document-level projects and VSTO add-in projects for Excel. For more information, see Features Available by Office Application and Project Type.
There are two procedures for closing the active workbook: one for document-level customizations and one for VSTO Add-ins.
To close the active workbook in a document-level customization
Call the Close method to close the workbook associated with the customization. To use the following code example, run it in the
Sheet1class in a document-level project for Excel.
To close the active workbook in a VSTO Add-in
Call the Close method to close the active workbook. To use the following code example, run it in the
ThisAddInclass in an VSTO Add-in project for Excel.
The way that you close a workbook that you specify by name is the same for VSTO Add-ins and document-level customizations.
To close a workbook that you specify by name
Specify the workbook name as an argument to the Workbooks collection. The following code example assumes that a workbook named NewWorkbook is open in Excel.
Working with Workbooks
How to: Programmatically Save Workbooks
How to: Programmatically Open Workbooks
Programmatic Limitations of Host Items and Host Controls
Optional Parameters in Office Solutions
Host Items and Host Controls Overview