_Workbook Interface

Represents a Microsoft Excel workbook.

Namespace:  Microsoft.Office.Interop.Excel
Assembly:  Microsoft.Office.Interop.Excel (in Microsoft.Office.Interop.Excel.dll)

Syntax

'Declaration
<GuidAttribute("000208DA-0000-0000-C000-000000000046")> _
Public Interface _Workbook
'Usage
Dim instance As _Workbook
[GuidAttribute("000208DA-0000-0000-C000-000000000046")]
public interface _Workbook

Remarks

The Workbook object is a member of the Workbooks collection. The Workbooks collection contains all the Workbook objects currently open in Microsoft Excel.

The following properties for returning a Workbook object are described in this section:

Workbooks Property

Use Workbooks(index), where index is the workbook name or index number, to return a single Workbook object.

The index number denotes the order in which the workbooks were opened or created. Workbooks(1) is the first workbook created, and Workbooks(Workbooks.Count) is the last one created. Activating a workbook doesn’t change its index number. All workbooks are included in the index count, even if they’re hidden.

The Name property returns the workbook name. You cannot set the name by using this property; if you need to change the name, use the SaveAs method to save the workbook under a different name.

ActiveWorkbook Property

The ActiveWorkbook property returns the workbook that’s currently active.

ThisWorkbook Property

The ThisWorkbook property returns the workbook where the Visual Basic code is running. In most cases, this is the same as the active workbook. However, if the Visual Basic code is part of an add-in, the ThisWorkbook property won’t return the active workbook. In this case, the active workbook is the workbook calling the add-in, whereas the ThisWorkbook property returns the add-in workbook.

If you’ll be creating an add-in from your Visual Basic code, you should use the ThisWorkbook property to qualify any statement that must be run on the workbook you compile into the add-in.

See Also

Reference

_Workbook Members

Microsoft.Office.Interop.Excel Namespace