API Reference
Get-OfficeExcelWorksheetView
Gets worksheet view settings such as frozen panes and gridline visibility.
Remarks
Gets worksheet view settings such as frozen panes and gridline visibility.
Examples
Inspect worksheet view settings.
PS>
$views = Get-OfficeExcelWorksheetView -Path .\Report.xlsx
$views |
Format-Table SheetName, FrozenRowCount, FrozenColumnCount, ShowGridlines, ZoomScale
Returns view metadata useful for workbook audits and maintenance scripts.
Common Parameters
This command supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
For more information, see about_CommonParameters.
Syntax
Get-OfficeExcelWorksheetView [-Sheet <String>] [-SheetIndex <Int32>] [<CommonParameters>]#ContextParameters
- Sheet String
- Worksheet name to inspect. Defaults to the current DSL sheet or all workbook sheets.
- SheetIndex Int32
- Worksheet index (0-based) to inspect. Defaults to the current DSL sheet or all workbook sheets.
Outputs
System.Management.Automation.PSObject
Get-OfficeExcelWorksheetView -Path <String> [-Sheet <String>] [-SheetIndex <Int32>] [<CommonParameters>]#PathParameters
- Path String
- Workbook path to inspect.
- Sheet String
- Worksheet name to inspect. Defaults to the current DSL sheet or all workbook sheets.
- SheetIndex Int32
- Worksheet index (0-based) to inspect. Defaults to the current DSL sheet or all workbook sheets.
Outputs
System.Management.Automation.PSObject
Get-OfficeExcelWorksheetView -Document <ExcelDocument> [-Sheet <String>] [-SheetIndex <Int32>] [<CommonParameters>]#DocumentParameters
- Document ExcelDocument
- Workbook to inspect outside the DSL context.
- Sheet String
- Worksheet name to inspect. Defaults to the current DSL sheet or all workbook sheets.
- SheetIndex Int32
- Worksheet index (0-based) to inspect. Defaults to the current DSL sheet or all workbook sheets.
Outputs
System.Management.Automation.PSObject