ClassType Property

Returns or sets the class type for the specified OLE object, picture, or field. Read/write String.

Remarks

This property is read-only for linked objects other than DDE links.

You can see a list of the available applications in the Object type box on the Create New tab in the Object dialog box (Insert menu). You can find the ClassType string by inserting an object as an inline shape and then viewing the field codes. The class type of the object follows either the word "EMBED" or the word "LINK."

Example

This example loops through all the floating shapes on the active document and sets all linked Microsoft Excel worksheets to be updated automatically.

Dim shapeLoop As Shape

For Each shapeLoop In ActiveDocument.Shapes
    With shapeLoop
        If .Type = msoLinkedOLEObject Then
            If .OLEFormat.ClassType = "Excel.Sheet" Then 
                .LinkFormat.AutoUpdate = True
            End If
        End If
    End With
Next

Applies to | OLEFormat Object

See Also | ConvertTo Method | OLEFormat Object