@Bean(typeName="iframe") public class Iframe extends HtmlElementMixed
Constructor and Description |
---|
Iframe() |
Modifier and Type | Method and Description |
---|---|
Iframe |
_class(String _class)
class attribute.
|
Iframe |
child(Object child)
Adds a child element to this element.
|
Iframe |
children(Object... children)
Adds one or more child elements to this element.
|
Iframe |
height(Object height)
height
attribute.
|
Iframe |
id(String id)
id attribute.
|
Iframe |
name(String name)
name attribute.
|
Iframe |
sandbox(String sandbox)
sandbox
attribute.
|
Iframe |
src(Object src)
src attribute.
|
Iframe |
srcdoc(String srcdoc)
srcdoc
attribute.
|
Iframe |
style(String style)
style attribute.
|
Iframe |
width(Object width)
width attribute.
|
getChild, getChild, getChild, getChildren, setChildren
accesskey, attr, attrUri, contenteditable, deminimize, dir, getAttr, getAttr, getAttrs, hidden, lang, onabort, onblur, oncancel, oncanplay, oncanplaythrough, onchange, onclick, oncuechange, ondblclick, ondurationchange, onemptied, onended, onerror, onfocus, oninput, oninvalid, onkeydown, onkeypress, onkeyup, onload, onloadeddata, onloadedmetadata, onloadstart, onmousedown, onmouseenter, onmouseleave, onmousemove, onmouseout, onmouseover, onmouseup, onmousewheel, onpause, onplay, onplaying, onprogress, onratechange, onreset, onresize, onscroll, onseeked, onseeking, onselect, onshow, onstalled, onsubmit, onsuspend, ontimeupdate, ontoggle, onvolumechange, onwaiting, setAttrs, spellcheck, tabindex, title, toString, translate
public Iframe()
public final Iframe name(String name)
Name of nested browsing context.
name
- The new value for this attribute.public final Iframe sandbox(String sandbox)
Security rules for nested content.
sandbox
- The new value for this attribute.public final Iframe src(Object src)
Address of the resource.
The value can be of any of the following types: URI
, URL
, String
.
Strings must be valid URIs.
URIs defined by UriResolver
can be used for values.
public final Iframe srcdoc(String srcdoc)
A document to render in the iframe.
srcdoc
- The new value for this attribute.public final Iframe _class(String _class)
HtmlElement
_class
in class HtmlElement
_class
- The new value for this attribute.public final Iframe id(String id)
HtmlElement
id
in class HtmlElement
id
- The new value for this attribute.public final Iframe style(String style)
HtmlElement
style
in class HtmlElement
style
- The new value for this attribute.public Iframe children(Object... children)
HtmlElementMixed
children
in class HtmlElementMixed
children
- The children to add as child elements.
Can be a mixture of strings and HtmlElement
objects.
Can also be containers of strings and elements.public Iframe child(Object child)
HtmlElementMixed
child
in class HtmlElementMixed
child
- The child to add as a child element.
Can be a string or HtmlElement
.
Can also be a container of strings and elements.Copyright © 2016–2020 The Apache Software Foundation. All rights reserved.