1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<!-- This file generated using Python HTMLgen module. -->
<HEAD>
<META NAME="GENERATOR" CONTENT="HTMLgen 2.2.2">
<TITLE>Class Area - Specify a click-sensitive area of an image.</TITLE>
<LINK rel=stylesheet href="HTMLgen.css" type=text/css title="HTMLgen.css">
</HEAD>
<BODY BGCOLOR="#FFFFFF" BACKGROUND="../image/bg-dots.gif" TEXT="#000000" LINK="#EE0000" VLINK="#990000">
<A HREF="HTMLgen-Address.html"><IMG src="../image/back.gif" height="22" width="66" alt="Previous" border="0"></A>
<A HREF="HTMLgen-AutoStringTemplate.html"><IMG src="../image/next.gif" height="22" width="66" alt="Next" border="0"></A>
<IMG src="../image/blank.gif" height="22" width="66" alt="blank.gif">
<IMG src="../image/blank.gif" height="22" width="66" alt="blank.gif">
<H3>Class Area - Specify a click-sensitive area of an image.</H3>
<HR>
<H2>SYNOPSIS</H2>
<PRE>import HTMLgen</PRE>
<PRE>class Area(AbstractTagSingle)
string __module__ = 'HTMLgen'
dictionary attr_dict = {'id': '', 'target': '', ' ...
string attr_template = '%(alt)s%(class)s%(coords) ...
tuple attrs = ('alt', 'class', 'coords', ...
string tagname = 'AREA'
# Methods inherited by Area from AbstractTagSingle
def __init__(self, *args, **kw)
<A HREF="#def __setattr__(self, name, value)">def __setattr__(self, name, value)</A>
<A HREF="#def __str__(self)">def __str__(self)</A>
</PRE>
<H2>DESCRIPTION</H2>
<P>The area is linked to a HREF specified by the <EM>href</EM> attribute.
The <EM>coords</EM> attribute is required and describes the position of
an area (in pixels) of the image in comma-separated x,y
coordinates where the upper-left corner is "0,0". For shape=<CODE>rect</CODE>
(the default), it is "left,top,right,bottom". For shape=<CODE>circle</CODE>
,
it is "center_x,center_y,radius". For shape=<CODE>polygon</CODE>
, it is
successive x,y vertices of the polygon. If the first and last
coordinates are not the same, then a segment is inferred to close
the polygon. If no <EM>href</EM> keyword is given a <EM>NOHREF</EM> will be
generated indicating that this region should generate no links.</P>
<H3><A NAME="def __setattr__(self, name, value)">def __setattr__(self, name, value)</A></H3>
<P>Intercept attribute assignments.</P>
<P>If the attribute is a legal HTML tag attribute add it to the
dict used for substitution in __str__, otherwise just set it as
an instance attribute.
</P>
<H3><A NAME="def __str__(self)">def __str__(self)</A></H3>
<P>Generate an HTML formatted string for this object.
</P>
<H2>Keyword Arguments</H2>
<DL>
<DT><B> href</B><DD>Typically a reference to an image
<DT><B> coords</B><DD>string holding a list of coordinates defining
<DT><B> shape </B><DD>'rect'|'circle'|'polygon'
</DL>
<H2>SEE ALSO</H2>
<P><A HREF="HTMLgen_overview.html">HTMLgen</A></P>
<P><A HREF="HTMLgen-AbstractTagSingle.html">AbstractTagSingle</A></P>
<P><HR>
<A HREF="HTMLgen-Address.html"><IMG src="../image/back.gif" height="22" width="66" alt="Previous" border="0"></A>
<A HREF="HTMLgen-AutoStringTemplate.html"><IMG src="../image/next.gif" height="22" width="66" alt="Next" border="0"></A>
<IMG src="../image/blank.gif" height="22" width="66" alt="blank.gif">
<IMG src="../image/blank.gif" height="22" width="66" alt="blank.gif">
<BR><IMG src="../image/Buzz.gif" height="51" width="56" alt="Buzz.gif" align="bottom">
<FONT SIZE="-1"><P>Copyright © Robin Friedrich<BR>All Rights Reserved<BR>
Comments to author: <A HREF="mailto:friedrich@pythonpros.com">friedrich@pythonpros.com</A><br>
Generated: Tue Apr 20, 1999 <BR><hr>
</FONT>
</BODY> </HTML>
|