Share via


Master.Icon Property

Visio Automation Reference

Returns the icon contained in a master. Read/write.

Version Information
 Version Added:  Visio 2002

Syntax

expression.Icon

expression   A variable that represents a Master object.

Return Value
IPictureDisp

Remarks

The Icon property returns and accepts only HICON files. Microsoft Office Visio raises an exception if the object returned is a non-HICON file.

COM provides a standard implementation of a picture object that has the IPictureDisp interface on top of the underlying system picture support. The IPictureDisp interface exposes a picture object's properties and is implemented in the stdole type library as a StdPicture object creatable within Microsoft Visual Basic. The stdole type library is automatically referenced from all Visual Basic for Applications (VBA) projects in Visio.

To get information about the StdPicture object that supports the IPictureDisp interface:

  1. On the Tools menu, point to Macros, and then click Visual Basic Editor.
  2. On the View menu, click Object Browser.
  3. In the Project/Library list, click stdole.
  4. Under Classes, examine the class named StdPicture.

For details about the IPictureDisp interface, see the Microsoft Platform SDK on MSDN, the Microsoft Developer Network.

Currently, only in-process solutions can use the Icon property because the IPictureDisp interface cannot be marshaled.

See Also