HTML CSS Reference/HTML Attributes Reference/valuetype

Материал из Web эксперт
Перейти к: навигация, поиск

"valuetype" Example

   <source lang="html4strict">

<HTML> <head><Title>Example For</Title></head> <BODY> <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"

       codebase="http://download.macromedia.ru/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" 
       width="243" 
       height="194">
       <param name=movie DATA="yourfile.swf" valuetype="ref" type="video/*">
       <param name="quality" value="high">

</object> </BODY> </HTML>


     </source>
   
  


valuetype is applied to

   <source lang="html4strict">

+----------------+--------------------------------------------------------------+ | Applied_To |<param> | +----------------+--------------------------------------------------------------+

     </source>
   
  


valuetype Possible Values

   <source lang="html4strict">

Possible Values data value is a string. This is the default value. ref value is a valid Uniform Resource Identifier (URI). object value is the value of an element id attribute or object.


     </source>
   
  


"valuetype" Syntax and Note

   <source lang="html4strict">

Note:

This attribute is used in conjunction with the value attribute of the <param> element. It is used to define the type of the value attribute.

Syntax:

<param valuetype="value">


     </source>