user582485
user582485

Reputation: 539

excel application methods and properties via activexobject

is there a list of methods and properties that an excel object created via

new ActiveXObject("Excel.Application");

has?

var excel = new ActiveXObject("Excel.Application");

Upvotes: 1

Views: 13787

Answers (2)

Zev Spitz
Zev Spitz

Reputation: 15327

In addition to the Microsoft documentation, there are also Typescript definitions for Excel available on DefinitelyTyped.

You can use an editor like VS Code that can leverage Typescript definitions in Javascript to get Intellisense for these types in Javascript.

(Disclaimer: I am the author of the Typescript definitions for Excel.)

Upvotes: 0

Llessur
Llessur

Reputation: 66

The Excel object model is fully documented on MSDN. Here is the Excel 2010 Application object. Use the links in the left navigator to view properties and members.

http://msdn.microsoft.com/en-us/library/ff194565.aspx

Move up the navigator tree to Reference to see all the objects.

http://msdn.microsoft.com/en-us/library/ff846392.aspx

Upvotes: 5

Related Questions