Page.Picture Property
Visio Automation Reference |
Returns a picture that represents an enhanced metafile (EMF) contained in a master, shape, selection, or page. Read-only.
Version Information
Version Added: Visio 2002
Syntax
expression.Picture
expression A variable that represents a Page object.
Return Value
IPictureDisp
Remarks
The Picture property returns only EMF files.
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 Microsoft Office Visio.
Currently, only in-process solutions can use the Picture property because the IPictureDisp interface cannot be marshaled.
To get information about the StdPicture object that supports the IPictureDisp interface
- On the Tools menu, point to Macros, and then click Visual Basic Editor.
- On the View menu, click Object Browser.
- In the Project/Library list, click stdole.
- Under Classes, examine the class named StdPicture.
For details about the IPictureDisp interface, see the Microsoft Platform SDK on MSDN, the Microsoft Developer Network.
See Also