org.w3c.dom.html

Interface HTMLImageElement

public interface HTMLImageElement extends HTMLElement

Embedded image. See the IMG element definition in HTML 4.0.
Method Summary
StringgetAlign()
Aligns this object (vertically or horizontally) with respect to its surrounding text.
StringgetAlt()
Alternate text for user agents not rendering the normal contentof this element.
StringgetBorder()
Width of border around image.
StringgetHeight()
Override height.
StringgetHspace()
Horizontal space to the left and right of this image.
booleangetIsMap()
Use server-side image map.
StringgetLongDesc()
URI designating a long description of this image or frame.
StringgetLowSrc()
URI designating the source of this image, for low-resolution output.
StringgetName()
The name of the element (for backwards compatibility).
StringgetSrc()
URI designating the source of this image.
StringgetUseMap()
Use client-side image map.
StringgetVspace()
Vertical space above and below this image.
StringgetWidth()
Override width.
voidsetAlign(String align)
voidsetAlt(String alt)
voidsetBorder(String border)
voidsetHeight(String height)
voidsetHspace(String hspace)
voidsetIsMap(boolean isMap)
voidsetLongDesc(String longDesc)
voidsetLowSrc(String lowSrc)
voidsetName(String name)
voidsetSrc(String src)
voidsetUseMap(String useMap)
voidsetVspace(String vspace)
voidsetWidth(String width)

Method Detail

getAlign

public 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.

getAlt

public String getAlt()
Alternate text for user agents not rendering the normal contentof this element. See the alt attribute definition in HTML 4.0.

getBorder

public String getBorder()
Width of border around image. See the border attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

getHeight

public String getHeight()
Override height. See the height attribute definition in HTML 4.0.

getHspace

public 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.

getIsMap

public boolean getIsMap()
Use server-side image map. See the ismap attribute definition in HTML 4.0.

getLongDesc

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

getLowSrc

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

getName

public String getName()
The name of the element (for backwards compatibility).

getSrc

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

getUseMap

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

getVspace

public 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.

getWidth

public String getWidth()
Override width. See the width attribute definition in HTML 4.0.

setAlign

public void setAlign(String align)

setAlt

public void setAlt(String alt)

setBorder

public void setBorder(String border)

setHeight

public void setHeight(String height)

setHspace

public void setHspace(String hspace)

setIsMap

public void setIsMap(boolean isMap)

setLongDesc

public void setLongDesc(String longDesc)

setLowSrc

public void setLowSrc(String lowSrc)

setName

public void setName(String name)

setSrc

public void setSrc(String src)

setUseMap

public void setUseMap(String useMap)

setVspace

public void setVspace(String vspace)

setWidth

public void setWidth(String width)