| Returns the value of the named parameter in the HTML tag. For
example, if an applet is specified as
<applet code="Clock" width=50 height=50>
<param name=Color value="blue">
</applet>
then a call to getParameter("Color") returns the
value "blue" .
Parameters: name - a parameter name. the value of the named parameter,or null if not set. |