Dart API Referencedart:htmlAppletElement

AppletElement Interface

Obsolete

Extends

Element

Fields

Code String align #

This attribute is used to position the applet on the page relative to content that might flow around it. The HTML 4.01 specification defines values of bottom, left, middle, right, and top, whereas Microsoft and Netscape also might support absbottom, absmiddle, baseline, center, and texttop.
String align;

Code String alt #

This attribute causes a descriptive text alternate to be displayed on browsers that do not support Java. Page designers should also remember that content enclosed within the <applet> element may also be rendered as alternative text.
String alt;

Code String archive #

This attribute refers to an archived or compressed version of the applet and its associated class files, which might help reduce download time.
String archive;

Code String code #

This attribute specifies the URL of the applet's class file to be loaded and executed. Applet filenames are identified by a .class filename extension. The URL specified by code might be relative to the codebase attribute.
String code;

Code String codeBase #

String codeBase;

Code String height #

This attribute specifies the height, in pixels, that the applet needs.
String height;

Code String hspace #

This attribute specifies additional horizontal space, in pixels, to be reserved on either side of the applet.
String hspace;

Code String name #

This attribute assigns a name to the applet so that it can be identified by other resources; particularly scripts.
String name;

Code String object #

This attribute specifies the URL of a serialized representation of an applet.
String object;

Code String vspace #

This attribute specifies additional vertical space, in pixels, to be reserved above and below the applet.
String vspace;

Code String width #

This attribute specifies in pixels the width that the applet needs.
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.