[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IShape.Rotation

Rotation Property

Rotation

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.

Declaration
double Rotation { get; set; }
Property Rotation As Double
Examples
IShape shape = worksheet.Shapes.AddShape(AutoShapeType.Rectangle, 20, 20, 120, 60);
shape.Rotation = 15;
double rotation = shape.Rotation;