API Reference
Cmdlet
Add-OfficeExcelReportCallout
Adds a colored callout block to the current Excel report sheet.
Remarks
Adds a colored callout block to the current Excel report sheet.
Examples
Add a warning callout to a report sheet.
PS>
New-OfficeExcel -Path .\Operations.xlsx {
Add-OfficeExcelReportSheet -Name Summary {
Add-OfficeExcelReportCallout -Kind Warning -Title 'Manual validation' -Body 'Open the workbook in desktop Excel before publishing pivot-heavy reports.'
}
}
Renders a composer callout block using the current report theme.
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
Add-OfficeExcelReportCallout -Body <String> [-Kind <Info|Success|Warning|Error|Critical>] -Title <String> [-WidthColumns <Int32>] [<CommonParameters>]#Parameter set:
All Parameter SetsParameters
- Body String
- Callout body text.
- Kind String
- Callout kind. Supported values include info, success, warning, error, and critical.
- Possible values:
Info,Success,Warning,Error,Critical - Title String
- Callout title.
- WidthColumns Int32
- Width of the highlighted callout band in worksheet columns.
Outputs
System.Object