
Espacio de nombres:
CodiumSDK.CPL.HTMLTagsEnsamblado: CodiumSDK.dll

Class that represent an “form” tag. The form tag is used to create an HTML form for user input.
Métodos
Constructores
| Nombre | Descripción |
|---|
 | Form() | Form |
 | Form(program, acceptCharset, action, autocomplete, enctype, method, name, novalidate, target, innerHTML, style, className, id, title) | Constructor for form |
#GetAttribute(name)

Get Attribute
| C# |
| public CodiumSDK.CPL.HTMLAttribute GetAttribute(System.String name); |
Regresa
CodiumSDK.CPL.HTMLAttribute
Parámetros
| Nombre | Tipo | Descripción |
|---|
| name | System.String | Name of the Atrribute |
#Form()

Form
#Form(program, acceptCharset, action, autocomplete, enctype, method, name, novalidate, target, innerHTML, style, className, id, title)

Constructor for form
| C# |
| public Form(CodiumSDK.CPL.ProgramDefinition program, CodiumSDK.CPL.HTMLTags.Form.CharacterSets acceptCharset, System.String action, CodiumSDK.CPL.HTMLTags.Form.Autocomplete autocomplete, CodiumSDK.CPL.HTMLTags.Form.Enctype enctype, CodiumSDK.CPL.HTMLTags.Form.Method method, System.String name, System.Boolean novalidate, System.String target, System.String innerHTML, System.String style, System.String className, System.String id, System.String title); |
Parámetros
| Nombre | Tipo | Descripción |
|---|
| program | CodiumSDK.CPL.ProgramDefinition | Program Definition |
| acceptCharset | CodiumSDK.CPL.HTMLTags.Form.CharacterSets | Specifies the character encodings that are to be used for the form submission |
| action | System.String | Specifies where to send the form-data when a form is submitted |
| autocomplete | CodiumSDK.CPL.HTMLTags.Form.Autocomplete | Specifies whether a form should have autocomplete on or off |
| enctype | CodiumSDK.CPL.HTMLTags.Form.Enctype | Specifies how the form-data should be encoded when submitting it to the server (only for method="post") |
| method | CodiumSDK.CPL.HTMLTags.Form.Method | Specifies the HTTP method to use when sending form-data |
| name | System.String | Specifies the name of a form |
| novalidate | System.Boolean | Specifies that the form should not be validated when submitted |
| target | System.String | Specifies where to display the response that is received after submitting the form |
| innerHTML | System.String | Inner HTML |
| 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 |