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-MapArea

Namespace PSWriteHTML

Creates a new MapArea object with specified parameters.

Remarks

This function creates a new MapArea object with the specified area, href, value, and optional tooltip content.

Examples

Authored help example

EXAMPLE 1


New-MapArea -Area "North" -Href "north.html" -Value "North Region" -Tooltip { "This is the North region." }
        

Creates a new MapArea object for the North region with the specified href, value, and tooltip content.

EXAMPLE 2


New-MapArea -Area "South" -Href "south.html" -Value "South Region"
        

Creates a new MapArea object for the South region with the specified href and value.

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-MapArea -Area <String> [-Href <String>] [-TooltipContent <ScriptBlock>] -Value <String> [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

Area String requiredposition: 0pipeline: False
Specifies the area for the MapArea object. This parameter is mandatory.
Href String optionalposition: 1pipeline: False
Specifies the href attribute for the MapArea object.
TooltipContent ScriptBlock optionalposition: 3pipeline: Falsealiases: Tooltip
Value String requiredposition: 2pipeline: False
Specifies the value attribute for the MapArea object. This parameter is mandatory.