Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

ExcelScript.SheetVisibility enum

Package:
ExcelScript

Remarks

Used by

Examples

/**
 * This script unhides all the worksheets in the workbook.
 */
function main(workbook: ExcelScript.Workbook) {
 // Iterate over each worksheet.
 workbook.getWorksheets().forEach((worksheet) => {
 // Set the worksheet visibility to visible.
 worksheet.setVisibility(ExcelScript.SheetVisibility.visible);
 });
}

Fields

hidden
veryHidden
visible

Feedback

Was this page helpful?