API Reference
Command
Invoke-OfficeExcelAutoFit
Automatically fits Excel row heights and/or column widths.
Remarks
Automatically fits Excel row heights and/or column widths.
Examples
Auto-fit columns in the current DSL sheet.
PS>ExcelSheet 'Data' { Invoke-OfficeExcelAutoFit -Columns }
Adjusts column widths for the active sheet.
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
Invoke-OfficeExcelAutoFit [-All] [-Column <Int32[]>] [-Columns] [-Row <Int32[]>] [-Rows] [<CommonParameters>]#Parameter set:
ContextParameters
- All SwitchParameter
- Auto-fit both rows and columns.
- Column Int32[]
- Auto-fit specific column indexes (1-based).
- Columns SwitchParameter
- Auto-fit all columns.
- Row Int32[]
- Auto-fit specific row indexes (1-based).
- Rows SwitchParameter
- Auto-fit all rows.
Outputs
System.Object
Invoke-OfficeExcelAutoFit [-All] [-Column <Int32[]>] [-Columns] -Document <ExcelDocument> [-Row <Int32[]>] [-Rows] [-Sheet <String>] [-SheetIndex <Nullable`1>] [<CommonParameters>]#Parameter set:
DocumentParameters
- All SwitchParameter
- Auto-fit both rows and columns.
- Column Int32[]
- Auto-fit specific column indexes (1-based).
- Columns SwitchParameter
- Auto-fit all columns.
- Document ExcelDocument
- Workbook to operate on outside the DSL context.
- Row Int32[]
- Auto-fit specific row indexes (1-based).
- Rows SwitchParameter
- Auto-fit all rows.
- Sheet String
- Worksheet name when using Document.
- SheetIndex Nullable`1
- Worksheet index (0-based) when using Document.
Outputs
System.Object