Products
|
Download
|
Order
|
Forum
|
Contact us
NativeExcel suite v2.x
Reference
>
IXLSName
>
Visible
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
IXLSName interface
IXLSNames interface
IXLSWorkbook.Names property
IXLSWorksheet.Names property
Copyright © NikaSoft 2004-2010