API Reference
Cmdlet
Get-OfficeExcelRichText
Gets mixed-format rich text runs from an Excel cell.
Remarks
Gets mixed-format rich text runs from an Excel cell.
Examples
Inspect rich text runs from a workbook.
PS>
$runs = Get-OfficeExcelRichText -Path .\Report.xlsx -Sheet Summary -Address A1
$runs |
Format-Table Index, Text, Bold, Italic, Color
Returns one object per inline rich text run with text and style properties.
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-OfficeExcelRichText [-Address <String>] [-Column <Int32>] [-Row <Int32>] [-Sheet <String>] [-SheetIndex <Int32>] [<CommonParameters>]#Parameter set:
ContextParameters
- Address String
- A1-style cell address.
- Column Int32
- 1-based column index.
- Row Int32
- 1-based row index.
- Sheet String
- Worksheet name. Defaults to the current sheet inside an ExcelSheet block.
- SheetIndex Int32
- Worksheet index when using a workbook object or path.
Outputs
System.Management.Automation.PSObject
Get-OfficeExcelRichText [-Address <String>] [-Column <Int32>] -Path <String> [-Row <Int32>] [-Sheet <String>] [-SheetIndex <Int32>] [<CommonParameters>]#Parameter set:
PathParameters
- Address String
- A1-style cell address.
- Column Int32
- 1-based column index.
- Path String
- Workbook path to inspect.
- Row Int32
- 1-based row index.
- Sheet String
- Worksheet name. Defaults to the current sheet inside an ExcelSheet block.
- SheetIndex Int32
- Worksheet index when using a workbook object or path.
Outputs
System.Management.Automation.PSObject
Get-OfficeExcelRichText [-Address <String>] [-Column <Int32>] -Document <ExcelDocument> [-Row <Int32>] [-Sheet <String>] [-SheetIndex <Int32>] [<CommonParameters>]#Parameter set:
DocumentParameters
- Address String
- A1-style cell address.
- Column Int32
- 1-based column index.
- Document ExcelDocument
- Workbook to inspect outside the DSL context.
- Row Int32
- 1-based row index.
- Sheet String
- Worksheet name. Defaults to the current sheet inside an ExcelSheet block.
- SheetIndex Int32
- Worksheet index when using a workbook object or path.
Outputs
System.Management.Automation.PSObject