All Packages Class Hierarchy This Package Previous Next Index
Interface org.w3c.dom.html.HTMLAreaElement
- public interface HTMLAreaElement
- extends HTMLElement
Client-side image map area definition. See the AREA element definition in
HTML 4.0.
-
getAccessKey()
- A single character access key to give access to the form control.
-
getAlt()
- Alternate text for user agents not rendering the normal contentof this
element.
-
getCoords()
- Comma-separated list of lengths, defining an active region geometry.See
also
shape for the shape of the region.
-
getHref()
- The URI of the linked resource.
-
getNoHref()
- Specifies that this area is inactive, i.e., has no associated action.
-
getShape()
- The shape of the active area.
-
getTabIndex()
- Index that represents the element's position in the tabbing order.
-
getTarget()
- Frame to render the resource in.
-
setAccessKey(String)
-
-
setAlt(String)
-
-
setCoords(String)
-
-
setHref(String)
-
-
setNoHref(boolean)
-
-
setShape(String)
-
-
setTabIndex(int)
-
-
setTarget(String)
-
getAccessKey
public abstract String getAccessKey()
- A single character access key to give access to the form control. See the
accesskey attribute definition in HTML 4.0.
setAccessKey
public abstract void setAccessKey(String accessKey)
getAlt
public abstract String getAlt()
- Alternate text for user agents not rendering the normal contentof this
element. See the alt attribute definition in HTML 4.0.
setAlt
public abstract void setAlt(String alt)
getCoords
public abstract String getCoords()
- Comma-separated list of lengths, defining an active region geometry.See
also
shape for the shape of the region. See the coords
attribute definition in HTML 4.0.
setCoords
public abstract void setCoords(String coords)
getHref
public abstract String getHref()
- The URI of the linked resource. See the href attribute definition in HTML
4.0.
setHref
public abstract void setHref(String href)
getNoHref
public abstract boolean getNoHref()
- Specifies that this area is inactive, i.e., has no associated action. See
the nohref attribute definition in HTML 4.0.
setNoHref
public abstract void setNoHref(boolean noHref)
getShape
public abstract String getShape()
- The shape of the active area. The coordinates are givenby
coords. See the shape attribute definition in HTML 4.0.
setShape
public abstract void setShape(String shape)
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)
getTarget
public abstract String getTarget()
- Frame to render the resource in. See the target attribute definition in
HTML 4.0.
setTarget
public abstract void setTarget(String target)
All Packages Class Hierarchy This Package Previous Next Index