Syntax

expression.AutoShapeType

expression A variable that represents a Shape object.

Remarks

When you change the type of a shape, the shape retains its size, color, and other attributes.

Use the property of the object to set or return the connector type.

Example

This example replaces all 16-point stars with 32-point stars in myDocument.

Visual Basic for Applications
Set myDocument = Worksheets(1) For Each s In myDocument.Shapes If s.AutoShapeType = msoShape16pointStar Then s.AutoShapeType = msoShape32pointStar End If Next

See also: