API Reference
Cmdlet
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 <Nullable`1>] [<CommonParameters>]#Parameter set:
ContextParameters
- Sheet String
- Worksheet name to inspect. Defaults to the current DSL sheet or all workbook sheets.
- SheetIndex Nullable`1
- Worksheet index (0-based) to inspect. Defaults to the current DSL sheet or all workbook sheets.
Outputs
System.Management.Automation.PSObject
Get-OfficeExcelWorksheetView -InputPath <String> [-Sheet <String>] [-SheetIndex <Nullable`1>] [<CommonParameters>]#Parameter set:
PathParameters
- InputPath String
- Workbook path to inspect.
- Sheet String
- Worksheet name to inspect. Defaults to the current DSL sheet or all workbook sheets.
- SheetIndex Nullable`1
- 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 <Nullable`1>] [<CommonParameters>]#Parameter set:
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 Nullable`1
- Worksheet index (0-based) to inspect. Defaults to the current DSL sheet or all workbook sheets.
Outputs
System.Management.Automation.PSObject