Skip to content

Latest commit

 

History

History
38 lines (23 loc) · 846 Bytes

Excel.ShapeRange.Model3D.md

File metadata and controls

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

ShapeRange.Model3D property (Excel)

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

Syntax

expression.Model3D

expression A variable that represents a ShapeRange object.

Example

This example selects all shapes in worksheet one, and then disables the AutoFit property of all Model3D objects in the selection.

Set myDocument = Worksheets(1) 
myDocument.Shapes.SelectAll 
Selection.ShapeRange.Model3D.AutoFit = False

[!includeSupport and feedback]