ThreeDFormat.IncrementRotationY Method
Changes the rotation of the specified shape around the y-axis by the specified number of degrees.
Namespace: Microsoft.Office.Interop.PowerPoint
Assembly: Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)
Syntax
'Declaration
Sub IncrementRotationY ( _
Increment As Single _
)
'Usage
Dim instance As ThreeDFormat
Dim Increment As Single
instance.IncrementRotationY(Increment)
void IncrementRotationY(
float Increment
)
Parameters
- Increment
Type: System.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
Use the RotationY property to set the absolute rotation of the shape around the y-axis.
You cannot adjust the rotation around the y-axis of the specified 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.
To change the rotation of a shape around the x-axis, use the IncrementRotationX(Single) method. To change the rotation around the z-axis, use the IncrementRotation(Single) method.