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

Class that represent a “button” tag. The button tag defines a clickable button.
Métodos
Constructores
| Nombre | Descripción |
---|
 | Button() | Button |
 | Button(program, type, autofocus, disabled, name, value, innerHTML, style, className, id, title) | Constructor for button |
#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 |
#Button()

Button
#Button(program, type, autofocus, disabled, name, value, innerHTML, style, className, id, title)

Constructor for button
C# |
public Button(CodiumSDK.CPL.ProgramDefinition program, CodiumSDK.CPL.HTMLTags.Button.ButtonType type, System.Boolean autofocus, System.Boolean disabled, System.String name, System.String value, 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 |
type | CodiumSDK.CPL.HTMLTags.Button.ButtonType | Specifies the type of button |
autofocus | System.Boolean | Specifies that a button should automatically get focus when the page loads |
disabled | System.Boolean | Specifies that a button should be disabled |
name | System.String | Specifies a name for the button |
value | System.String | Specifies an initial value for the button |
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 |