Evotec

Project

PSWriteHTML

PSWriteHTML is an open-source PowerShell project with packages, release history, and working documentation.

Stars 995
Forks 114
Open issues 69
PowerShell Gallery downloads 7,436,513
Release v1.41.0
Language: PowerShell Updated: 2026-04-11

API Reference

Function

New-HTMLSummaryItemData

Namespace PSWriteHTML

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

Authored help example

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 Sets

Parameters

Icon String optionalposition: 0pipeline: False
Specifies the icon for the summary item.
Information String requiredposition: 2pipeline: Falsealiases: Value
Specifies the information to be displayed in the summary item. This parameter is mandatory.
Text String requiredposition: 1pipeline: False
Specifies the text to be displayed in the summary item. This parameter is mandatory.