Share via


Shape.Rotation Property

Returns or sets the number of degrees the specified shape is rotated around the z-axis. Read/write.

Namespace:  Microsoft.Office.Interop.PowerPoint
Assembly:  Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)

Syntax

'Declaration
Property Rotation As Single
    Get
    Set
'Usage
Dim instance As Shape
Dim value As Single

value = instance.Rotation

instance.Rotation = value
float Rotation { get; set; }

Property Value

Type: System.Single
Single

Remarks

A positive value indicates clockwise rotation; a negative value indicates counterclockwise rotation.

To set the rotation of a three-dimensional shape around the x-axis or the y-axis, use the RotationX property or the RotationY property of the ThreeDFormat object.

Examples

This example matches the rotation of all shapes on myDocument to the rotation of shape one.

Set myDocument = ActivePresentation.Slides(1)

With myDocument.Shapes

    sh1Rotation = .Item(1).RotationFor o = 1 To .Count

        .Item(o).Rotation= sh1Rotation

    Next

End With

See Also

Reference

Shape Interface

Shape Members

Microsoft.Office.Interop.PowerPoint Namespace