HotXLS Docs

Visible property

Returns or sets whether the shape fill is visible or transparent

Syntax

property Visible: Boolean;

Example

This example makes the fill of the first shape invisible

Shape := Workbook.Sheets[1].Shapes[1];
Shape.Fill.Visible := False;