Espacio de nombres: CodiumSDK.CPL.HTMLTags
Ensamblado: CodiumSDK.dll

Class that represent an “form” tag. The form tag is used to create an HTML form for user input.
C#
public class Form : CodiumSDK.CPL.HTMLTagBase

Métodos

NombreDescripción
GetAttribute(name)Get Attribute

Constructores

NombreDescripció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

NombreTipoDescripción
nameSystem.StringName of the Atrribute

Form()

Form
C#
public 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

NombreTipoDescripción
programCodiumSDK.CPL.ProgramDefinitionProgram Definition
acceptCharsetCodiumSDK.CPL.HTMLTags.Form.CharacterSetsSpecifies the character encodings that are to be used for the form submission
actionSystem.StringSpecifies where to send the form-data when a form is submitted
autocompleteCodiumSDK.CPL.HTMLTags.Form.AutocompleteSpecifies whether a form should have autocomplete on or off
enctypeCodiumSDK.CPL.HTMLTags.Form.EnctypeSpecifies how the form-data should be encoded when submitting it to the server (only for method="post")
methodCodiumSDK.CPL.HTMLTags.Form.MethodSpecifies the HTTP method to use when sending form-data
nameSystem.StringSpecifies the name of a form
novalidateSystem.BooleanSpecifies that the form should not be validated when submitted
targetSystem.StringSpecifies where to display the response that is received after submitting the form
innerHTMLSystem.StringInner HTML
styleSystem.StringSpecifies an inline CSS style for an element
classNameSystem.StringSpecifies one or more classnames for an element (refers to a class in a style sheet)
idSystem.StringSpecifies a unique id for an element
titleSystem.StringSpecifies extra information about an element