API Reference
Command
New-HtmlXInputGroupInput
Adds a text input as the central control of the current input group.
Remarks
Use inside New-HtmlXInputGroup { }.
Examples
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
- Accept filter for file inputs.
- Autocomplete string
- Autocomplete value.
- Disabled SwitchParameter
- Disable the input.
- Max double
- Maximum value.
- MaxLength int
- Maximum length for text inputs.
- Min double
- Minimum value.
- Multiple SwitchParameter
- Allow multiple file selection (type=file).
- Name string
- Input name/id.
- Pattern string
- Regex pattern for text inputs.
- Placeholder string
- Placeholder text.
- ReadOnly SwitchParameter
- Read-only input.
- Required SwitchParameter
- Mark input as required.
- Step double
- Step value.
- Type InputType
- 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
- Default value.
Outputs
HtmlForgeX.TablerInput