Types/OpenPackage/set_Language.ps1
|
<# .SYNOPSIS Sets OpenPackage `Language` .DESCRIPTION Sets the OpenPackage `Language` property. .LINK https://learn.microsoft.com/en-us/dotnet/api/system.io.packaging.packageproperties.language?wt.mc_id=MVP_321542 #> param([string]$Language) $this.PackageProperties.Language = $Language |