[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IShape.Visible

Visible Property

Visible

Gets or sets whether the object is visible.

This property indicates whether the shape is displayed on the worksheet.

Declaration
bool Visible { get; set; }
Property Visible As Boolean
Examples
IShape shape = worksheet.Shapes.AddShape(AutoShapeType.Rectangle, 20, 20, 120, 60);
shape.Visible = false;
bool visible = shape.Visible;