program | CodiumSDK.CPL.ProgramDefinition | Program Definition |
type | CodiumSDK.CPL.HTMLTags.Input.InputType | Specifies the type input element to display |
accept | System.String | Specifies a filter for what file types the user can pick from the file input dialog box (only for type="file") |
alt | System.String | Specifies an alternate text for images (only for type="image") |
autocomplete | CodiumSDK.CPL.HTMLTags.Form.Autocomplete | Specifies whether an input element should have autocomplete enabled |
autofocus | System.Boolean | Specifies that an input element should automatically get focus when the page loads |
ischecked | System.Boolean | Specifies that an input element should be pre-selected when the page loads (for type="checkbox" or type="radio") |
disabled | System.Boolean | Specifies that an input element should be disabled |
height | System.Int32 | Specifies the height of an input element (only for type="image") |
width | System.Int32 | Specifies the width of an input element (only for type="image") |
list | CodiumSDK.CPL.HTMLTags.Datalist | Refers to a datalist element that contains pre-defined options for an input element |
max | System.String | Specifies the maximum value for an input element |
maxlength | System.String | Specifies the maximum number of characters allowed in an input element |
min | System.String | Specifies a minimum value for an input element |
minlength | System.String | Specifies the minimum number of characters required in an input element |
multiple | System.Boolean | Specifies that a user can enter more than one value in an input element |
name | System.String | Specifies the name of an input element |
pattern | System.String | Specifies a regular expression that an input element's value is checked against |
placeholder | System.String | Specifies a short hint that describes the expected value of an input element |
isreadonly | System.Boolean | Specifies that an input field is read-only |
required | System.Boolean | Specifies that an input field must be filled out before submitting the form |
src | System.String | Specifies the URL of the image to use as a submit button (only for type="image") |
value | System.String | Specifies the value of an input element |
step | System.String | Specifies the interval between legal numbers in an input field |
style | System.String | Specifies an inline CSS style for an element |
className | System.String | Specifies one or more classnames for an element (refers to a class in a style sheet) |
id | System.String | Specifies a unique id for an element |
title | System.String | Specifies extra information about an element |