InvisibleApp Object

Visio Automation Reference

Represents an invisible instance of Microsoft Office Visio 2003. The properties of the InvisibleApp object are identical to those of the Application object.

Version Information
 Version Added:  Visio 2000

Remarks

You can use the InvisibleApp object when you want to take advantage of Automation in Visio without end-user interaction or knowledge.

An external program typically creates or retrieves an Application or InvisibleApp object before it can retrieve other Visio objects from that instance. Use the Microsoft Visual Basic CreateObject function or the New keyword to run a new instance. Set the value of the InvisibleApp object's Visible property to True to show it.

ms408957.vs_note(en-us,office.12).gif  Note
You cannot use the Visual Basic GetObject function to retrieve an InvisibleApp object for an instance of Visio that is already running. Attempts to do so will fail.

Use the Documents, Windows, and Addons properties of an InvisibleApp object to retrieve the Documents, Windows, and Addons collections of the instance.

Use the ActiveDocument, ActivePage, or ActiveWindow property to retrieve the currently active Document, Page, or Window object.

Use the BuiltInMenus, BuiltInToolbars, CustomMenus, CustomToolbars, or CommandBars properties to access the InvisibleApp object's menus and toolbars.

ActiveDocument is the default property of an InvisibleApp object.

ms408957.vs_note(en-us,office.12).gif  Note
Code in the Microsoft Visual Basic for Applications (VBA) project of a Visio document can use the Visio global object instead of a Visio Invisible App object to retrieve other objects.

See Also