Model3DFormat.Application property (PowerPoint)

Returns an Application object that represents the creator of the specified object.

Syntax

expression.Application

expression A variable that represents a Model3DFormat object.

Return value

Object

Example

This example displays the name of the application that created each 3D model object on slide one in the active presentation.

For Each shp3DModel In ActivePresentation.Slides(1).Shapes

    If shp3DModel.Type = mso3DModel Then

        MsgBox shpOle.Model3D.Application.Name

    End If

Next

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.