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.
-
getAlign()
- Aligns this object (vertically or horizontally)
with respect to its surrounding text.
-
getArchive()
- Space-separated list of archives.
-
getBorder()
- Width of border around the object.
-
getCode()
- Applet class file.
-
getCodeBase()
- Base URI for classid, data, and
archive attributes.
-
getCodeType()
- Content type for data downloaded via classid attribute.
-
getData()
- A URI specifying the location of the object's data.
-
getDeclare()
- Declare (for future reference), but do not instantiate, this
object.
-
getForm()
- Returns the FORM element containing this control.
-
getHeight()
- Override height.
-
getHspace()
- Horizontal space to the left and right of this image, applet, or object.
-
getName()
- Form control or object name when submitted with a form.
-
getStandby()
- Message to render while loading the object.
-
getTabIndex()
- Index that represents the element's position in the tabbing order.
-
getType()
- Content type for data downloaded via data attribute.
-
getUseMap()
- Use client-side image map.
-
getVspace()
- Vertical space above and below this image, applet, or object.
-
getWidth()
- Override width.
-
setAlign(String)
-
-
setArchive(String)
-
-
setBorder(String)
-
-
setCode(String)
-
-
setCodeBase(String)
-
-
setCodeType(String)
-
-
setData(String)
-
-
setDeclare(boolean)
-
-
setHeight(String)
-
-
setHspace(String)
-
-
setName(String)
-
-
setStandby(String)
-
-
setTabIndex(int)
-
-
setType(String)
-
-
setUseMap(String)
-
-
setVspace(String)
-
-
setWidth(String)
-
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.
getCode
public abstract String getCode()
- Applet class file. See the code attribute for
HTMLAppletElement.
setCode
public abstract void setCode(String code)
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.
setAlign
public abstract void setAlign(String align)
getArchive
public abstract String getArchive()
- Space-separated list of archives. See the archive attribute definition in HTML 4.0.
setArchive
public abstract void setArchive(String archive)
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.
setBorder
public abstract void setBorder(String border)
getCodeBase
public abstract String getCodeBase()
- Base URI for classid, data, and
archive attributes. See the codebase attribute definition in HTML 4.0.
setCodeBase
public abstract void setCodeBase(String codeBase)
getCodeType
public abstract String getCodeType()
- Content type for data downloaded via classid attribute. See the codetype attribute definition in HTML 4.0.
setCodeType
public abstract void setCodeType(String codeType)
getData
public abstract String getData()
- A URI specifying the location of the object's data. See the data attribute definition in HTML 4.0.
setData
public abstract void setData(String data)
getDeclare
public abstract boolean getDeclare()
- Declare (for future reference), but do not instantiate, this
object. See the declare attribute definition in HTML 4.0.
setDeclare
public abstract void setDeclare(boolean declare)
getHeight
public abstract String getHeight()
- Override height. See the height attribute definition in HTML 4.0.
setHeight
public abstract void setHeight(String height)
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.
setHspace
public abstract void setHspace(String hspace)
getName
public abstract String getName()
- Form control or object name when submitted with a form. See the name attribute definition in HTML 4.0.
setName
public abstract void setName(String name)
getStandby
public abstract String getStandby()
- Message to render while loading the object. See the standby attribute definition in HTML 4.0.
setStandby
public abstract void setStandby(String standby)
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.
setTabIndex
public abstract void setTabIndex(int tabIndex)
getType
public abstract String getType()
- Content type for data downloaded via data attribute. See the type attribute definition in HTML 4.0.
setType
public abstract void setType(String type)
getUseMap
public abstract String getUseMap()
- Use client-side image map. See the usemap attribute definition in HTML 4.0.
setUseMap
public abstract void setUseMap(String useMap)
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.
setVspace
public abstract void setVspace(String vspace)
getWidth
public abstract String getWidth()
- Override width. See the width attribute definition in HTML 4.0.
setWidth
public abstract void setWidth(String width)
All Packages Class Hierarchy This Package Previous Next Index