NativeExcel suite v2.x

Visible property

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;

See also

Copyright © NikaSoft 2004-2010