[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IThreeDFormat.RotationY

RotationY Property

RotationY

Gets or sets the rotation of the extruded shape around the y-axis in degrees.

Use this property to get or set the y-axis rotation applied to a shape's 3-D formatting.

Declaration
double RotationY { get; set; }
Property RotationY As Double
Examples
IShape shape = worksheet.Shapes.AddShape(AutoShapeType.Rectangle, 1, 1, 100, 100);
shape.ThreeD.Depth = 7;
shape.ThreeD.RotationY = 20;
double rotationY = shape.ThreeD.RotationY;