Syntax

expression.IncrementRotationY(Increment)

expression A variable that represents a ThreeDFormat object.

Parameters

Name Required/Optional Data Type Description
Increment Required Single Specifies how much (in degrees) the rotation of the shape around the y-axis is to be changed. Can be a value from - 90 through 90. A positive value tilts the shape to the left; a negative value tilts it to the right.

Remarks

To change the rotation of a shape around the x-axis, use the method. To change the rotation around the z-axis, use the method.

You cannot adjust the specified shape's rotation around the y-axis shape past the upper or lower limit for the RotationY property (90 degrees to - 90 degrees). For example, if the RotationY property is initially set to 80 and you specify 40 for the Increment argument, the resulting rotation will be 90 (the upper limit for the RotationY property) instead of 120.

Example

This example tilts shape one on myDocument 10 degrees to the right. Shape one must be an extruded shape for you to see the effect of this code.

Visual Basic for Applications
Set myDocument = Worksheets(1) myDocument.Shapes(1).ThreeD.IncrementRotationY -10
increment rotation y Increment Rotation Y Method Increment the rotation of the 3d shape around the y-axis? IncrementRotationY incrementrotationy method Tilt the specific shape to the left by 4 degrees?

See also: