
org.w3c.dom.html.HTMLImageElement Maven / Gradle / Ivy
// Copyright (c) 1998 by W3C
//
// DOM is a trademark of W3C
// The DOM level 1 specification, from which this
// source is derived, is copyright by W3C.
// See: http://www.w3.org/TR/REC-DOM-Level-1/
//
package org.w3c.dom.html;
import org.w3c.dom.*;
/**
Embedded image. See the
IMG element definition
in HTML 4.0.
Property Summary
lowSrc
getLowSrc
setLowSrc
URI designating the source of this image, for low-resolution output.
name
getName
setName
The name of the element (for backwards compatibility).
align
getAlign
setAlign
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.
alt
getAlt
setAlt
Alternate text for user agents not rendering the normal content of this element. See the
alt attribute definition
in HTML 4.0.
border
getBorder
setBorder
Width of border around image. See the
border attribute definition
in HTML 4.0. This attribute is deprecated in HTML 4.0.
height
getHeight
setHeight
Override height. See the
height attribute definition
in HTML 4.0.
hspace
getHspace
setHspace
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.
isMap
getIsMap
setIsMap
Use server-side image map. See the
ismap attribute definition
in HTML 4.0.
longDesc
getLongDesc
setLongDesc
URI designating a long description of this image or frame. See the
longdesc attribute definition
in HTML 4.0.
src
getSrc
setSrc
URI designating the source of this image. See the
src attribute definition
in HTML 4.0.
useMap
getUseMap
setUseMap
Use client-side image map. See the
usemap attribute definition
in HTML 4.0.
vspace
getVspace
setVspace
Vertical space above and below this image. See the
vspace attribute definition
in HTML 4.0. This attribute is deprecated in HTML 4.0.
width
getWidth
setWidth
Override width. See the
width attribute definition
in HTML 4.0.
*/
public interface HTMLImageElement
extends HTMLElement
{
/** Assigns the value of the lowSrc
property.
*/
void setLowSrc (String lowSrc);
/**
* Returns the value of the lowSrc
property.
*/
String getLowSrc ();
/** Assigns the value of the name
property.
*/
void setName (String name);
/**
* Returns the value of the name
property.
*/
String getName ();
/** Assigns the value of the align
property.
*/
void setAlign (String align);
/**
* Returns the value of the align
property.
*/
String getAlign ();
/** Assigns the value of the alt
property.
*/
void setAlt (String alt);
/**
* Returns the value of the alt
property.
*/
String getAlt ();
/** Assigns the value of the border
property.
*/
void setBorder (String border);
/**
* Returns the value of the border
property.
*/
String getBorder ();
/** Assigns the value of the height
property.
*/
void setHeight (String height);
/**
* Returns the value of the height
property.
*/
String getHeight ();
/** Assigns the value of the hspace
property.
*/
void setHspace (String hspace);
/**
* Returns the value of the hspace
property.
*/
String getHspace ();
/** Assigns the value of the isMap
property.
*/
void setIsMap (boolean isMap);
/**
* Returns the value of the isMap
property.
*/
boolean getIsMap ();
/** Assigns the value of the longDesc
property.
*/
void setLongDesc (String longDesc);
/**
* Returns the value of the longDesc
property.
*/
String getLongDesc ();
/** Assigns the value of the src
property.
*/
void setSrc (String src);
/**
* Returns the value of the src
property.
*/
String getSrc ();
/** Assigns the value of the useMap
property.
*/
void setUseMap (String useMap);
/**
* Returns the value of the useMap
property.
*/
String getUseMap ();
/** Assigns the value of the vspace
property.
*/
void setVspace (String vspace);
/**
* Returns the value of the vspace
property.
*/
String getVspace ();
/** Assigns the value of the width
property.
*/
void setWidth (String width);
/**
* Returns the value of the width
property.
*/
String getWidth ();
}