API Reference
Function
New-HTMLLogo
Creates a new HTML logo with specified parameters.
Remarks
This function creates a new HTML logo using the provided parameters. It allows customization of the left and right logo names, strings, and the option to hide logos.
Examples
EXAMPLE 1
New-HTMLLogo -LogoPath "C:\Logos\logo.png" -LeftLogoName "CompanyA" -RightLogoName "CompanyB" -LeftLogoString "Company A Logo" -RightLogoString "Company B Logo"
Creates a new HTML logo with custom left and right logo names and strings.
EXAMPLE 2
New-HTMLLogo -LogoPath "C:\Logos\logo.png" -HideLogos
Creates a new HTML logo with logos hidden.
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-HTMLLogo [-HideLogos] [-LeftLogoName <String>] [-LeftLogoString <String>] [-LogoPath <String>] [-RightLogoName <String>] [-RightLogoString <String>] [<CommonParameters>]
#
Parameter set:
All Parameter SetsParameters
- HideLogos SwitchParameter
- Switch parameter to hide logos.
- LeftLogoName String
- The name of the left logo. Default is "Sample".
- LeftLogoString String
- The string for the left logo.
- LogoPath String
- The path to the logo.
- RightLogoName String
- The name of the right logo. Default is "Alternate".
- RightLogoString String
- The string for the right logo.