HtmlForgeX

API Reference

Command

New-HtmlXInputGroupInput

Namespace HtmlForgeX.PowerShell
Outputs
HtmlForgeX.TablerInput

Adds a text input as the central control of the current input group.

Remarks

Use inside New-HtmlXInputGroup { }.

Examples

Imported script example

New-HtmlXInputGroupInput -Name "username" -Placeholder "john.doe"
        

New-HtmlXInputGroupInput -Name "query" -Placeholder "Find..."
        

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-HtmlXInputGroupInput [-Accept <string>] [-Autocomplete <string>] [-Disabled] [-Max <double>] [-MaxLength <int>] [-Min <double>] [-Multiple] [-Name <string>] [-Pattern <string>] [-Placeholder <string>] [-ReadOnly] [-Required] [-Step <double>] [-Type <Text>] [-Value <string>] [<CommonParameters>]
#

Parameters

Accept string optionalposition: namedpipeline: false
Accept filter for file inputs.
Autocomplete string optionalposition: namedpipeline: false
Autocomplete value.
Disabled SwitchParameter optionalposition: namedpipeline: false
Disable the input.
Max double optionalposition: namedpipeline: false
Maximum value.
MaxLength int optionalposition: namedpipeline: false
Maximum length for text inputs.
Min double optionalposition: namedpipeline: false
Minimum value.
Multiple SwitchParameter optionalposition: namedpipeline: false
Allow multiple file selection (type=file).
Name string optionalposition: namedpipeline: false
Input name/id.
Pattern string optionalposition: namedpipeline: false
Regex pattern for text inputs.
Placeholder string optionalposition: namedpipeline: false
Placeholder text.
ReadOnly SwitchParameter optionalposition: namedpipeline: false
Read-only input.
Required SwitchParameter optionalposition: namedpipeline: false
Mark input as required.
Step double optionalposition: namedpipeline: false
Step value.
Type InputType optionalposition: namedpipeline: falsevalues: 14
Input type (text, email, number, etc.). Possible values: Text, Email, Password, Number, Date, Time, File, Tel, Url, Checkbox, Hidden, TextArea, Color, Range
Possible values: Text, Email, Password, Number, Date, Time, File, Tel, Url, Checkbox, Hidden, TextArea, Color, Range
Value string optionalposition: namedpipeline: false
Default value.

Outputs

HtmlForgeX.TablerInput