Package: mlreportgen.dom
Superclasses:
Define image area as hyperlink
Define an area in an image to hyperlink to. When you click an
image area, an HTML browser displays the target page, based on the
URL or link target you specify. If the target is in the same document,
clicking the link moves you to that location in the document. You
can provide alternative text for screen readers that support alternative
text. Create image areas in reports with PDF or HTML output. Create
the image map using mlreportgen.dom.ImageMap
and append areas
to the map.
creates
an empty image area.imageAreaObj
= ImageArea()
creates
a rectangular image area.imageAreaObj
= ImageArea(target
,altText
,x1
,y1
,x2
,y2
)
creates
a circular image area. imageAreaObj
= ImageArea(target
,altText
,x
,y
,radius
)
creates
a polygonal image area.imageAreaObj
= ImageArea(target
,altText
,polygonCoordinates
)