[]
Returns the IThreeDFormat object that contains 3-D effect formatting properties for the specified shape.
Use the returned object to read or modify settings such as extrusion depth, rotation, perspective, and 3-D visibility for the shape.
IThreeDFormat ThreeD { get; }
ReadOnly Property ThreeD As IThreeDFormat
IShape shape = worksheet.Shapes.AddShape(AutoShapeType.Rectangle, 20, 20, 120, 60);
IThreeDFormat threeD = shape.ThreeD;
threeD.Depth = 12;