Determines whether the Defined name is visible. Read/write Boolean.
Syntax
property Visible: boolean;
Example
This example hides the first defined name in the Worksheet one.
if Workbook.Sheets[1].Names.Count > 0 then begin
Workbook.Sheets[1].Names[1].Visible := false;
end;