[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IThreeDFormat.Depth

Depth Property

Depth

Gets or sets the depth of the shape's extrusion.

Use this property to determine how far the shape is extruded in three-dimensional formatting.

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