[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IThreeDFormat.Visible

Visible Property

Visible

Gets or sets whether the object is visible.

Use this property to show or hide the shape's three-dimensional formatting, or to check whether it is currently displayed.

Declaration
bool Visible { get; set; }
Property Visible As Boolean
Examples
IShape shape = worksheet.Shapes.AddShape(AutoShapeType.Rectangle, 1, 1, 100, 100);
shape.ThreeD.Depth = 7;
shape.ThreeD.Visible = false;
bool visible = shape.ThreeD.Visible;