[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IWorksheet.Visible

Visible Property

Visible

Gets or sets the visibility state of the worksheet.

The returned value indicates whether the worksheet is currently shown, hidden, or very hidden.

Declaration
Visibility Visible { get; set; }
Property Visible As Visibility
Examples
IWorksheet detailSheet = workbook.Worksheets.Add();
detailSheet.Name = "Detail";
detailSheet.Visible = Visibility.Hidden;
Visibility visibility = detailSheet.Visible;