[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IName.Visible

Visible Property

Visible

Gets or sets whether the name is visible.

Declaration
bool Visible { get; set; }
Property Visible As Boolean
Examples
IName definedName = workbook.Names.Add("SalesTotal", "=Sheet1!$A$1:$A$3");
definedName.Visible = false;
bool visible = definedName.Visible;