[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.ILineFormat.Visible

Visible Property

Visible

Gets or sets whether the object is visible.

Use this property to check whether the line for the shape is currently displayed.

Declaration
bool Visible { get; set; }
Property Visible As Boolean
Examples
IShape connector = worksheet.Shapes.AddConnector(ConnectorType.Straight, 10, 10, 200, 100);
ILineFormat line = connector.Line;
line.Visible = false;
bool visible = line.Visible;