API Reference
Function
New-MapArea
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
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 SetsParameters
- Area String
- Specifies the area for the MapArea object. This parameter is mandatory.
- Href String
- Specifies the href attribute for the MapArea object.
- TooltipContent ScriptBlock
- Value String
- Specifies the value attribute for the MapArea object. This parameter is mandatory.