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

Class that represent a “iframe” tag. The iframe tag specifies an inline frame.
Métodos
Constructores
| Nombre | Descripción |
---|
 | Iframe() | Iframe |
 | Iframe(program, allowfullscreen, height, width, loading, name, src, style, className, id, title) | Constructor for iframe |
#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 |
#Iframe()

Iframe
#Iframe(program, allowfullscreen, height, width, loading, name, src, style, className, id, title)

Constructor for iframe
C# |
public Iframe(CodiumSDK.CPL.ProgramDefinition program, System.Boolean allowfullscreen, System.Int32 height, System.Int32 width, CodiumSDK.CPL.HTMLTags.Iframe.Loading loading, System.String name, System.String src, System.String style, System.String className, System.String id, System.String title); |
Parámetros
Nombre | Tipo | Descripción |
---|
program | CodiumSDK.CPL.ProgramDefinition | Program Definition |
allowfullscreen | System.Boolean | Set to true if the iframe can activate fullscreen mode by calling the requestFullscreen() method |
height | System.Int32 | Specifies the height of an iframe. Default height is 150 pixels |
width | System.Int32 | Specifies the width of an iframe. Default width is 300 pixels |
loading | CodiumSDK.CPL.HTMLTags.Iframe.Loading | Specifies whether a browser should load an iframe immediately or to defer loading of iframes until some conditions are met |
name | System.String | Specifies the name of an iframe |
src | System.String | Specifies the address of the document to embed in the iframe |
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 |