Shape.Model3D property (Excel)

Returns a Model3DFormat object that contains Model3D properties. Read-only.

Syntax

expression.Model3D

expression A variable that represents a Shape object.

Example

This example enables the AutoFit property for all Model3D objects on worksheet one.

For Each s In Worksheets(1).Shapes
 If s.Type = mso3DModel Then s.Model3D.AutoFit = True
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.