Dart API Referencedart:htmlIFrameElement

IFrameElement Interface

DOM iframe objects expose the HTMLIFrameElement (or HTML 4 HTMLIFrameElement) interface, which provides special properties and methods (beyond the regular element object interface they also have available to them by inheritance) for manipulating the layout and presentation of inline frame elements.

Extends

Element

Constructors

Code new IFrameElement() #

IFrameElement();

Methods

Code SVGDocument getSVGDocument() #

SVGDocument getSVGDocument();

Fields

Code String align #

Specifies the alignment of the frame with respect to the surrounding context.
String align;

Code final Window contentWindow #

The window proxy for the nested browsing context.
final Window contentWindow;

Code String frameBorder #

String frameBorder;

Code String height #

Reflects the height HTML attribute, indicating the height of the frame.
String height;

Code String longDesc #

URI of a long description of the frame.
String longDesc;

Code String marginHeight #

Height of the frame margin.
String marginHeight;

Code String marginWidth #

Width of the frame margin.
String marginWidth;

Code String name #

Reflects the name HTML attribute, containing a name by which to refer to the frame.
String name;

Code String sandbox #

Reflects the sandbox HTML attribute, indicating extra restrictions on the behavior of the nested content.
String sandbox;

Code String scrolling #

Indicates whether the browser should provide scrollbars for the frame.
String scrolling;

Code String src #

Reflects the src HTML attribute, containing the address of the content to be embedded.
String src;

Code String srcdoc #

The content to display in the frame.
String srcdoc;

Code String width #

Reflects the width  HTML attribute, indicating the width of the frame.
String width;

This page includes content from the Mozilla Foundation that is graciously licensed under a Creative Commons: Attribution-Sharealike license. Mozilla has no other association with Dart or dartlang.org. We encourage you to improve the web by contributing to The Mozilla Developer Network.