Iframe
class Iframe extends Normal
Iframe - Nested browsing context
Die Beschreibung des Elements ist in der HTML-Spezifikation zu finden
Properties
protected AttributeMap | $attributes | from Element | |
protected type | $selfClosing | from Element | |
protected type | $noEndTag | from Element | |
protected Namespaces | $namespace | from Element | |
protected string | $prefix | from Element | |
protected string | $localName | from Element |
Methods
Neue Instanz von Iframe erstellen
Prüfen ob der Tag ein schliessendes Tag benötigt. Das ist der Fall wenn selfClosing und EndTag true sind.
Acceskey setzen. Der Wert muss ein einzelnes Zeichen sein. Werden mehrere Zeichen übergeben, so wird nur der erste Wert genommen.
Klassenwert setzen. Sollen mehrere Klassen gesetzt werden, so müssen diese durch ein Leerzeichen getrennt werden.
ID (es wird nicht die ObjektID, der Hash gesetzt, sondern das HTML Attribute ID="")
HTML-Attribute src holen
HTML-Attribute srcdoc holen
HTML-Attribute name setzen
HTML-Attribute name holen
HTML-Attribute sandbox setzen
HTML-Attribute sandbox holen
HTML-Attribute width holen
HTML-Attribute height holen
Details
at line 43
__construct(string $value = null)
Neue Instanz von Iframe erstellen
in Element at line 214
string
getHTML()
HTML-Zeichenkette
in Node at line 83
string
__toString()
Liefert die Nodes als Zeichenkette zurück
Ruft getHTML() auf
in Element at line 95
Element
setNamespace(Namespaces $namespace)
Namespace setzen
in Element at line 105
Namespaces|null
getNamespace()
Namespace
in Element at line 114
string
getTag()
Alias auf getName
in Element at line 129
protected Element
setSelfClosing(boolean $mode)
Selbstschliessender Tag
<br>
in Element at line 146
boolean
hasEndTag()
Prüfen ob der Tag ein schliessendes Tag benötigt. Das ist der Fall wenn selfClosing und EndTag true sind.
<br>
in Element at line 170
string
getAttributeValue(string $name)
Den Wert eines Attributes abfragen
in Element at line 193
AttributeMap
getAttributes()
AttributeMap
in Element at line 204
Element
setAttributes(AttributeMap $map)
AttributeMap setzen
in Element at line 245
__clone()
Erstellt eine Kopie dieser Node.
Auch alle Kinder weden dabei kopiert.
in Html at line 55
string
getAccesskey()
Accesskey
in Html at line 64
string
getClass()
Klassen
in Html at line 73
string
getContenteditable()
ContentEditable-Flag
in Html at line 82
string
getDir()
Direction
in Html at line 91
string
getHidden()
Hidden
in Html at line 101
string
getIdAttribute()
ID des Tags (nicht mit der ID, dem Hash des Objekts verwechseln)
in Html at line 110
string
getLang()
Sprache (ISO)
in Html at line 119
string
getSpellcheck()
Rechtschreibung
in Html at line 128
string
getStyle()
CSS-Style Anweisungen
in Html at line 137
string
getTabindex()
Tabindes
in Html at line 146
string
getTitle()
Titel
in Html at line 155
string
getTranslate()
Übersetzung
in Html at line 171
Html
setAccesskey(string $accesskey)
Acceskey setzen. Der Wert muss ein einzelnes Zeichen sein. Werden mehrere Zeichen übergeben, so wird nur der erste Wert genommen.
in Html at line 187
Html
setClass(string $class)
Klassenwert setzen. Sollen mehrere Klassen gesetzt werden, so müssen diese durch ein Leerzeichen getrennt werden.
in Html at line 250
Html
setId(string $id)
ID (es wird nicht die ObjektID, der Hash gesetzt, sondern das HTML Attribute ID="")
in Html at line 304
boolean
isDraggable()
Ist das Element Dragable
at line 60
Iframe
setSrc(URI $value)
HTML-Attribute src setzen
<iframe src="$value" />
at line 74
URI
getSrc()
HTML-Attribute src holen
<iframe src="$value" />
at line 91
Iframe
setSrcdoc(string $value)
HTML-Attribute srcdoc setzen
<iframe srcdoc="$value" />
at line 105
string
getSrcdoc()
HTML-Attribute srcdoc holen
<iframe srcdoc="$value" />
at line 120
Iframe
setNameAttribute(string $value)
HTML-Attribute name setzen
<iframe name="$value" />
at line 134
string
getNameAttribute()
HTML-Attribute name holen
<iframe name="$value" />
at line 149
Iframe
setSandbox(string $value)
HTML-Attribute sandbox setzen
<iframe sandbox="$value" />
at line 163
string
getSandbox()
HTML-Attribute sandbox holen
<iframe sandbox="$value" />
at line 178
Iframe
setWidth(string $value)
HTML-Attribute width setzen
<iframe width="$value" />
at line 192
string
getWidth()
HTML-Attribute width holen
<iframe width="$value" />
at line 207
Iframe
setHeight(string $value)
HTML-Attribute height setzen
<iframe height="$value" />
at line 221
string
getHeight()
HTML-Attribute height holen
<iframe height="$value" />