[]
Gets or sets the rotation of the shape in degrees.
Use this property to get or change the current rotation angle applied to the shape.
double Rotation { get; set; }
Property Rotation As Double
IShape shape = worksheet.Shapes.AddShape(AutoShapeType.Rectangle, 20, 20, 120, 60);
shape.Rotation = 15;
double rotation = shape.Rotation;