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.
-
getAlign()
- Aligns this object (vertically or horizontally)
with respect to its surrounding text.
-
getAlt()
- Alternate text for user agents not rendering the normal content
of this element.
-
getBorder()
- Width of border around image.
-
getHeight()
- Override height.
-
getHspace()
- Horizontal space to the left and right of this image.
-
getIsMap()
- Use server-side image map.
-
getLongDesc()
- URI designating a long description of this image or frame.
-
getLowSrc()
- URI designating the source of this image, for low-resolution output.
-
getName()
- The name of the element (for backwards compatibility).
-
getSrc()
- URI designating the source of this image.
-
getUseMap()
- Use client-side image map.
-
getVspace()
- Vertical space above and below this image.
-
getWidth()
- Override width.
-
setAlign(String)
-
-
setAlt(String)
-
-
setBorder(String)
-
-
setHeight(String)
-
-
setHspace(String)
-
-
setIsMap(boolean)
-
-
setLongDesc(String)
-
-
setLowSrc(String)
-
-
setName(String)
-
-
setSrc(String)
-
-
setUseMap(String)
-
-
setVspace(String)
-
-
setWidth(String)
-
getLowSrc
public abstract String getLowSrc()
- URI designating the source of this image, for low-resolution output.
setLowSrc
public abstract void setLowSrc(String lowSrc)
getName
public abstract String getName()
- The name of the element (for backwards compatibility).
setName
public abstract void setName(String name)
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)
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.
setAlt
public abstract void setAlt(String alt)
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.
setBorder
public abstract void setBorder(String border)
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. See the hspace attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.
setHspace
public abstract void setHspace(String hspace)
getIsMap
public abstract boolean getIsMap()
- Use server-side image map. See the ismap attribute definition in HTML 4.0.
setIsMap
public abstract void setIsMap(boolean isMap)
getLongDesc
public abstract String getLongDesc()
- URI designating a long description of this image or frame. See the longdesc attribute definition in HTML 4.0.
setLongDesc
public abstract void setLongDesc(String longDesc)
getSrc
public abstract String getSrc()
- URI designating the source of this image. See the src attribute definition in HTML 4.0.
setSrc
public abstract void setSrc(String src)
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. 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