Skip to content

Files

Latest commit

 

History

History
38 lines (23 loc) · 763 Bytes

Excel.Shape.Model3D.md

File metadata and controls

38 lines (23 loc) · 763 Bytes
title keywords f1_keywords api_name ms.date ms.localizationpriority
Shape.Model3D property (Excel)
vbaxl10.chm636158
vbaxl10.chm636158
Excel.Shape.Model3D
05/14/2019
medium

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

[!includeSupport and feedback]