API Reference
Cmdlet
Set-OfficeExcelWorksheetView
Sets worksheet view options such as gridlines, direction, zoom, and view mode.
Remarks
Sets worksheet view options such as gridlines, direction, zoom, and view mode.
Examples
Apply common worksheet view options.
PS>
ExcelSheet 'Data' { Set-OfficeExcelWorksheetView -HideGridlines -ZoomScale 125 -View PageLayout }
Hides gridlines, sets zoom, and switches the sheet view.
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
Set-OfficeExcelWorksheetView [-HideGridlines] [-LeftToRight] [-PassThru] [-RightToLeft] [-ShowGridlines] [-View <Normal|PageBreakPreview|PageLayout>] [-ZoomScale <UInt32>] [-ZoomScaleNormal <UInt32>] [<CommonParameters>]#Parameter set:
ContextParameters
- HideGridlines SwitchParameter
- Hide worksheet gridlines.
- LeftToRight SwitchParameter
- Show worksheet left-to-right.
- PassThru SwitchParameter
- Emit the worksheet after applying view options.
- RightToLeft SwitchParameter
- Show worksheet right-to-left.
- ShowGridlines SwitchParameter
- Show worksheet gridlines.
- View ExcelWorksheetViewKind
- Worksheet view mode.
- Possible values:
Normal,PageBreakPreview,PageLayout - ZoomScale UInt32
- Active worksheet zoom percentage. Excel supports values from 10 to 400.
- ZoomScaleNormal UInt32
- Normal-view worksheet zoom percentage. Excel supports values from 10 to 400.
Set-OfficeExcelWorksheetView -Document <ExcelDocument> [-HideGridlines] [-LeftToRight] [-PassThru] [-RightToLeft] [-Sheet <String>] [-SheetIndex <Int32>] [-ShowGridlines] [-View <Normal|PageBreakPreview|PageLayout>] [-ZoomScale <UInt32>] [-ZoomScaleNormal <UInt32>] [<CommonParameters>]#Parameter set:
DocumentParameters
- Document ExcelDocument
- Workbook to operate on outside the DSL context.
- HideGridlines SwitchParameter
- Hide worksheet gridlines.
- LeftToRight SwitchParameter
- Show worksheet left-to-right.
- PassThru SwitchParameter
- Emit the worksheet after applying view options.
- RightToLeft SwitchParameter
- Show worksheet right-to-left.
- Sheet String
- Worksheet name when using Document.
- SheetIndex Int32
- Worksheet index (0-based) when using Document.
- ShowGridlines SwitchParameter
- Show worksheet gridlines.
- View ExcelWorksheetViewKind
- Worksheet view mode.
- Possible values:
Normal,PageBreakPreview,PageLayout - ZoomScale UInt32
- Active worksheet zoom percentage. Excel supports values from 10 to 400.
- ZoomScaleNormal UInt32
- Normal-view worksheet zoom percentage. Excel supports values from 10 to 400.