API Reference
Cmdlet
Set-OfficeExcelPrintArea
Sets the print area for a worksheet.
Remarks
Sets the print area for a worksheet.
Examples
Set a print area and keep the workbook printable.
PS>
$proof = @(
Set-OfficeExcelPrintArea -Path .\Report.xlsx -Sheet Summary -Range A1:H40
Set-OfficeExcelPrintTitles -Path .\Report.xlsx -Sheet Summary -FirstRow 1 -LastRow 2
)
$proof
Stores the worksheet-local Excel print area and repeats the report header rows for printing.
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-OfficeExcelPrintArea [-PassThru] -Range <String> [-Sheet <String>] [-SheetIndex <Nullable`1>] [<CommonParameters>]#Parameter set:
ContextParameters
- PassThru SwitchParameter
- Emit the worksheet after setting the print area.
- Range String
- A1 range to print.
- Sheet String
- Worksheet name. Defaults to the current sheet inside an ExcelSheet block.
- SheetIndex Nullable`1
- Worksheet index when using a workbook object or path.
Outputs
System.Object
Set-OfficeExcelPrintArea -InputPath <String> [-PassThru] -Range <String> [-Sheet <String>] [-SheetIndex <Nullable`1>] [<CommonParameters>]#Parameter set:
PathParameters
- InputPath String
- Workbook path to update.
- PassThru SwitchParameter
- Emit the worksheet after setting the print area.
- Range String
- A1 range to print.
- Sheet String
- Worksheet name. Defaults to the current sheet inside an ExcelSheet block.
- SheetIndex Nullable`1
- Worksheet index when using a workbook object or path.
Outputs
System.Object
Set-OfficeExcelPrintArea -Document <ExcelDocument> [-PassThru] -Range <String> [-Sheet <String>] [-SheetIndex <Nullable`1>] [<CommonParameters>]#Parameter set:
DocumentParameters
- Document ExcelDocument
- Workbook to update outside the DSL context.
- PassThru SwitchParameter
- Emit the worksheet after setting the print area.
- Range String
- A1 range to print.
- Sheet String
- Worksheet name. Defaults to the current sheet inside an ExcelSheet block.
- SheetIndex Nullable`1
- Worksheet index when using a workbook object or path.
Outputs
System.Object