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

Class that represent a “img” tag. The img tag is used to embed an image in an HTML page.
Métodos
Constructores
| Nombre | Descripción |
---|
 | Img() | Img |
 | Img(program, alt, src, loading, longdesc, height, width, usemap, style, className, id, title) | Constructor for img |
#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 |
#Img()

Img
#Img(program, alt, src, loading, longdesc, height, width, usemap, style, className, id, title)

Constructor for img
C# |
public Img(CodiumSDK.CPL.ProgramDefinition program, System.String alt, System.String src, CodiumSDK.CPL.HTMLTags.Iframe.Loading loading, System.String longdesc, System.Int32 height, System.Int32 width, CodiumSDK.CPL.HTMLTags.Map usemap, System.String style, System.String className, System.String id, System.String title); |
Parámetros
Nombre | Tipo | Descripción |
---|
program | CodiumSDK.CPL.ProgramDefinition | Program Definition |
alt | System.String | Specifies an alternate text for an image |
src | System.String | Specifies the path to the image |
loading | CodiumSDK.CPL.HTMLTags.Iframe.Loading | Specifies whether a browser should load an image immediately or to defer loading of images until some conditions are met |
longdesc | System.String | Specifies a URL to a detailed description of an image |
height | System.Int32 | Specifies the height of an image |
width | System.Int32 | Specifies the width of an image |
usemap | CodiumSDK.CPL.HTMLTags.Map | Specifies an image as a client-side image map |
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 |