[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IThreeDFormat.RotationX

RotationX Property

RotationX

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

Use this property to get or set the x-axis rotation applied to a shape's three-dimensional formatting.

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