Determines whether the fill is visible. Read/write Boolean
Syntax
property Visible: Boolean;
Example
This example hide the fill of the comment on cell C3
Var Comment: TXLSComment;
begin
...
With Workbook.Sheets[1] dobegin
Comment := Range['C3', 'C3'].Comment;
if Assigned(Comment) then Comment.Shape.Fill.Visible := false;
end;
...
end;