All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface org.w3c.dom.html.HTMLObjectElement

public interface HTMLObjectElement
extends HTMLElement
Generic embedded object. Note. In principle, all properties on the object element are read-write but in some environments some properties may be read-only once the underlying object is instantiated. See the OBJECT element definition in HTML 4.0.


Method Index

 o getAlign()
Aligns this object (vertically or horizontally) with respect to its surrounding text.
 o getArchive()
Space-separated list of archives.
 o getBorder()
Width of border around the object.
 o getCode()
Applet class file.
 o getCodeBase()
Base URI for classid, data, and archive attributes.
 o getCodeType()
Content type for data downloaded via classid attribute.
 o getData()
A URI specifying the location of the object's data.
 o getDeclare()
Declare (for future reference), but do not instantiate, this object.
 o getForm()
Returns the FORM element containing this control.
 o getHeight()
Override height.
 o getHspace()
Horizontal space to the left and right of this image, applet, or object.
 o getName()
Form control or object name when submitted with a form.
 o getStandby()
Message to render while loading the object.
 o getTabIndex()
Index that represents the element's position in the tabbing order.
 o getType()
Content type for data downloaded via data attribute.
 o getUseMap()
Use client-side image map.
 o getVspace()
Vertical space above and below this image, applet, or object.
 o getWidth()
Override width.
 o setAlign(String)
 o setArchive(String)
 o setBorder(String)
 o setCode(String)
 o setCodeBase(String)
 o setCodeType(String)
 o setData(String)
 o setDeclare(boolean)
 o setHeight(String)
 o setHspace(String)
 o setName(String)
 o setStandby(String)
 o setTabIndex(int)
 o setType(String)
 o setUseMap(String)
 o setVspace(String)
 o setWidth(String)

Methods

 o getForm
 public abstract HTMLFormElement getForm()
Returns the FORM element containing this control. Returns null if this control is not within the context of a form.

 o getCode
 public abstract String getCode()
Applet class file. See the code attribute for HTMLAppletElement.

 o setCode
 public abstract void setCode(String code)
 o getAlign
 public abstract String getAlign()
Aligns this object (vertically or horizontally) with respect to its surrounding text. See the align attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 o setAlign
 public abstract void setAlign(String align)
 o getArchive
 public abstract String getArchive()
Space-separated list of archives. See the archive attribute definition in HTML 4.0.

 o setArchive
 public abstract void setArchive(String archive)
 o getBorder
 public abstract String getBorder()
Width of border around the object. See the border attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 o setBorder
 public abstract void setBorder(String border)
 o getCodeBase
 public abstract String getCodeBase()
Base URI for classid, data, and archive attributes. See the codebase attribute definition in HTML 4.0.

 o setCodeBase
 public abstract void setCodeBase(String codeBase)
 o getCodeType
 public abstract String getCodeType()
Content type for data downloaded via classid attribute. See the codetype attribute definition in HTML 4.0.

 o setCodeType
 public abstract void setCodeType(String codeType)
 o getData
 public abstract String getData()
A URI specifying the location of the object's data. See the data attribute definition in HTML 4.0.

 o setData
 public abstract void setData(String data)
 o getDeclare
 public abstract boolean getDeclare()
Declare (for future reference), but do not instantiate, this object. See the declare attribute definition in HTML 4.0.

 o setDeclare
 public abstract void setDeclare(boolean declare)
 o getHeight
 public abstract String getHeight()
Override height. See the height attribute definition in HTML 4.0.

 o setHeight
 public abstract void setHeight(String height)
 o getHspace
 public abstract String getHspace()
Horizontal space to the left and right of this image, applet, or object. See the hspace attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 o setHspace
 public abstract void setHspace(String hspace)
 o getName
 public abstract String getName()
Form control or object name when submitted with a form. See the name attribute definition in HTML 4.0.

 o setName
 public abstract void setName(String name)
 o getStandby
 public abstract String getStandby()
Message to render while loading the object. See the standby attribute definition in HTML 4.0.

 o setStandby
 public abstract void setStandby(String standby)
 o getTabIndex
 public abstract int getTabIndex()
Index that represents the element's position in the tabbing order. See the tabindex attribute definition in HTML 4.0.

 o setTabIndex
 public abstract void setTabIndex(int tabIndex)
 o getType
 public abstract String getType()
Content type for data downloaded via data attribute. See the type attribute definition in HTML 4.0.

 o setType
 public abstract void setType(String type)
 o getUseMap
 public abstract String getUseMap()
Use client-side image map. See the usemap attribute definition in HTML 4.0.

 o setUseMap
 public abstract void setUseMap(String useMap)
 o getVspace
 public abstract String getVspace()
Vertical space above and below this image, applet, or object. See the vspace attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 o setVspace
 public abstract void setVspace(String vspace)
 o getWidth
 public abstract String getWidth()
Override width. See the width attribute definition in HTML 4.0.

 o setWidth
 public abstract void setWidth(String width)

All Packages  Class Hierarchy  This Package  Previous  Next  Index