OLEObjects Property [Visio 2003 SDK Documentation]

Returns the OLEObjects collection of a document, master, or page.

objRet = object**.OLEObjects**

objRet     An OLEObjects collection.

object     Required. An expression that returns a Document, Master, or Page object.

Version added

5.0

Remarks

The OLEObjects property returns an OLEObjects collection that includes any OLE 2.0 linked or embedded objects or ActiveX controls contained in a document, master, or page.

Example

This Microsoft Visual Basic for Applications (VBA) macro shows how to get the OLEObjects collection of an active page and print the ClassID and ProgID for each OLEObject object in the Immediate window. This example assumes that the active page contains at least one OLE 2.0 embedded or linked object or an ActiveX control.

Public Sub OLEObjects_Example()
 
    Dim intCounter As Integer
    Dim vsoOLEObjects As Visio.OLEObjects 

    'Get the OLEObjects collection of the active page.
    Set vsoOLEObjects = ActivePage.OLEObjects
 
    'Step through the collection of OLEObjects on the page.
    For intCounter = 1 To vsoOLEObjects.Count 
        Debug.Print vsoOLEObjects(intCounter).ClassID 
        Debug.Print vsoOLEObjects(intCounter).ProgID 
    Next intCounter 

End Sub

Applies to | Document object | Master object | Page object

See Also | OLEObject object