[]
Gets or sets whether the object is visible.
This property indicates whether the shape is displayed on the worksheet.
bool Visible { get; set; }
Property Visible As Boolean
IShape shape = worksheet.Shapes.AddShape(AutoShapeType.Rectangle, 20, 20, 120, 60);
shape.Visible = false;
bool visible = shape.Visible;