All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface org.w3c.dom.html.HTMLImageElement

public interface HTMLImageElement
extends HTMLElement
Embedded image. See the IMG element definition in HTML 4.0.


Method Index

 o getAlign()
Aligns this object (vertically or horizontally) with respect to its surrounding text.
 o getAlt()
Alternate text for user agents not rendering the normal content of this element.
 o getBorder()
Width of border around image.
 o getHeight()
Override height.
 o getHspace()
Horizontal space to the left and right of this image.
 o getIsMap()
Use server-side image map.
 o getLongDesc()
URI designating a long description of this image or frame.
 o getLowSrc()
URI designating the source of this image, for low-resolution output.
 o getName()
The name of the element (for backwards compatibility).
 o getSrc()
URI designating the source of this image.
 o getUseMap()
Use client-side image map.
 o getVspace()
Vertical space above and below this image.
 o getWidth()
Override width.
 o setAlign(String)
 o setAlt(String)
 o setBorder(String)
 o setHeight(String)
 o setHspace(String)
 o setIsMap(boolean)
 o setLongDesc(String)
 o setLowSrc(String)
 o setName(String)
 o setSrc(String)
 o setUseMap(String)
 o setVspace(String)
 o setWidth(String)

Methods

 o getLowSrc
 public abstract String getLowSrc()
URI designating the source of this image, for low-resolution output.

 o setLowSrc
 public abstract void setLowSrc(String lowSrc)
 o getName
 public abstract String getName()
The name of the element (for backwards compatibility).

 o setName
 public abstract void setName(String name)
 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 getAlt
 public abstract String getAlt()
Alternate text for user agents not rendering the normal content of this element. See the alt attribute definition in HTML 4.0.

 o setAlt
 public abstract void setAlt(String alt)
 o getBorder
 public abstract String getBorder()
Width of border around image. 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 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. 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 getIsMap
 public abstract boolean getIsMap()
Use server-side image map. See the ismap attribute definition in HTML 4.0.

 o setIsMap
 public abstract void setIsMap(boolean isMap)
 o getLongDesc
 public abstract String getLongDesc()
URI designating a long description of this image or frame. See the longdesc attribute definition in HTML 4.0.

 o setLongDesc
 public abstract void setLongDesc(String longDesc)
 o getSrc
 public abstract String getSrc()
URI designating the source of this image. See the src attribute definition in HTML 4.0.

 o setSrc
 public abstract void setSrc(String src)
 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. 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