Skip to main content

GetRotation

Returns the rotation angle of the current drawing object.

Syntax

expression.GetRotation();

expression - A variable that represents a ApiDrawing class.

Parameters

This method doesn't have any parameters.

Returns

number

Example

Get the rotation angle of the drawing in a spreadsheet.

// How can I get the rotation using a drawing object in a spreadsheet?

// Get the rotation for a drawing object in a spreadsheet.

let worksheet = Api.GetActiveSheet();
let fill = Api.CreateSolidFill(Api.RGB(255, 111, 61));
let stroke = Api.CreateStroke(0, Api.CreateNoFill());
let drawing = worksheet.AddShape("rect", 60 * 36000, 35 * 36000, fill, stroke, 0, 2 * 36000, 0, 3 * 36000);
drawing.SetSize(130 * 36000, 10 * 36000);
drawing.SetPosition(0, 2 * 36000, 1, 5 * 36000);
drawing.SetRotation(90);
let rotAngle = drawing.GetRotation();
worksheet.GetRange("A1").SetValue("Drawing rotation angle is: " + rotAngle + " degrees");