API Reference
New-HTMLWizardStep
Creates a new HTML wizard step with customizable options.
Remarks
This function creates a new HTML wizard step with various customization options such as setting the HTML data, tab heading, tab name, and icons.
Examples
EXAMPLE 1
New-HTMLWizardStep -HtmlData { Get-Content -Path "C:\example.html" } -Heading "Step 1" -Name "First Tab" -IconBrands "fa fa-facebook"
Creates a new HTML wizard step with the specified HTML data, tab heading, tab name, and FontAwesome Brands icon.
EXAMPLE 2
New-HTMLWizardStep -HtmlData { Get-Content -Path "C:\another.html" } -Heading "Step 2" -Name "Second Tab" -IconRegular "fa fa-github"
Creates a new HTML wizard step with the specified HTML data, tab heading, tab name, and FontAwesome Regular icon.
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-HTMLWizardStep [-AnchorName <String>] [-Heading <String>] [-HtmlData <ScriptBlock>] [-IconBrands <String>] [-IconColor <String>] [-IconSize <Object>] [-Name <String>] [-TextColor <String>] [-TextSize <Object>] [-TextTransform <uppercase|lowercase|capitalize>] [<CommonParameters>]
#
FontAwesomeBrandsParameters
- AnchorName String
- Heading String
- Specifies the heading text for the tab.
- HtmlData ScriptBlock
- Specifies the HTML data to be displayed in the wizard step.
- IconBrands String
- Specifies the icon for the tab from the FontAwesome Brands collection.
- IconColor String
- IconSize Object
- Name String
- Specifies the name of the tab.
- TextColor String
- TextSize Object
- TextTransform String
- Possible values:
uppercase,lowercase,capitalize
New-HTMLWizardStep [-AnchorName <String>] [-Heading <String>] [-HtmlData <ScriptBlock>] [-IconColor <String>] [-IconSize <Object>] [-IconSolid <String>] [-Name <String>] [-TextColor <String>] [-TextSize <Object>] [-TextTransform <uppercase|lowercase|capitalize>] [<CommonParameters>]
#
FontAwesomeSolidParameters
- AnchorName String
- Heading String
- Specifies the heading text for the tab.
- HtmlData ScriptBlock
- Specifies the HTML data to be displayed in the wizard step.
- IconColor String
- IconSize Object
- IconSolid String
- Specifies the icon for the tab from the FontAwesome Solid collection.
- Name String
- Specifies the name of the tab.
- TextColor String
- TextSize Object
- TextTransform String
- Possible values:
uppercase,lowercase,capitalize
New-HTMLWizardStep [-AnchorName <String>] [-Heading <String>] [-HtmlData <ScriptBlock>] [-IconColor <String>] [-IconRegular <String>] [-IconSize <Object>] [-Name <String>] [-TextColor <String>] [-TextSize <Object>] [-TextTransform <uppercase|lowercase|capitalize>] [<CommonParameters>]
#
FontAwesomeRegularParameters
- AnchorName String
- Heading String
- Specifies the heading text for the tab.
- HtmlData ScriptBlock
- Specifies the HTML data to be displayed in the wizard step.
- IconColor String
- IconRegular String
- Specifies the icon for the tab from the FontAwesome Regular collection.
- IconSize Object
- Name String
- Specifies the name of the tab.
- TextColor String
- TextSize Object
- TextTransform String
- Possible values:
uppercase,lowercase,capitalize