API Reference
Command
New-HtmlXCheckboxGroup
Creates a checkbox group control.
Remarks
Part of the HtmlForgeX.PowerShell DSL.
Examples
New-HtmlXCheckboxGroup -Name "alerts" -Label "Notifications" -Options @("Email", "SMS", "Webhook") -Checked @("Email", "Webhook")
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-HtmlXCheckboxGroup [-Checked <string[]>] [-Disabled <string[]>] [-Hint <string>] [-Inline] [-Label <string>] [-Name <string>] [-Options <string[]>] [-ValidationMessage <string>] [-ValidationState <Valid|Invalid|Warning>] [<CommonParameters>]#Parameters
- Checked string[]
- Options that should be checked.
- Disabled string[]
- Options that should be disabled.
- Hint string
- Hint text.
- Inline SwitchParameter
- Render inline.
- Label string
- Label text.
- Name string
- Group name.
- Options string[]
- Options list.
- ValidationMessage string
- Validation message.
- ValidationState ValidationState
- Validation state. Possible values: Valid, Invalid, Warning
- Possible values:
Valid,Invalid,Warning
Outputs
HtmlForgeX.TablerCheckboxGroup