Application Object
Excel Developer Reference |
Represents the entire Microsoft Excel application.
Remarks
The Application object contains:
- Application-wide settings and options.
- Methods that return top-level objects, such as ActiveCell, ActiveSheet, and so on.
Example
Use the Application property to return the Application object. The following example applies the Windows property to the Application object.
Visual Basic for Applications |
---|
|
The following example creates a Microsoft Excel workbook object in another application and then opens a workbook in Microsoft Excel.
Visual Basic for Applications |
---|
|
Many of the properties and methods that return the most common user-interface objects, such as the active cell (ActiveCell property), can be used without the Application object qualifier. For example, instead of writing
Visual Basic for Applications |
---|
|
You can write
Visual Basic for Applications |
---|
|
See Also