API Reference
Function
New-HTMLSummaryItemData
Creates a new HTML summary item data with specified text and information.
Remarks
This function creates a new HTML summary item data with the provided text and information. It formats the output using New-HTMLText cmdlet.
Examples
EXAMPLE 1
New-HTMLSummaryItemData -Text "Total Sales" -Information "$1000"
Creates a new HTML summary item with the text "Total Sales" and information "$1000".
EXAMPLE 2
New-HTMLSummaryItemData -Text "Total Orders" -Information "50" -Icon "order.png"
Creates a new HTML summary item with the text "Total Orders", information "50", and icon "order.png".
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
New-HTMLSummaryItemData [-Icon <String>] -Information <String> -Text <String> [<CommonParameters>]
#
Parameter set:
All Parameter SetsParameters
- Icon String
- Specifies the icon for the summary item.
- Information String
- Specifies the information to be displayed in the summary item. This parameter is mandatory.
- Text String
- Specifies the text to be displayed in the summary item. This parameter is mandatory.