public function SWFObject::height in SWF Embed 7
Same name and namespace in other branches
- 6 swfembed.module \SWFObject::height()
Set the height of this swf object.
If not specified, the system will try to determine the height of the file if it can.
Parameters
$height: The height in pixels of the file.
Return value
The called object.
File
- ./
swfembed.module, line 224 - The main file for swfembed.
Class
- SWFObject
- Generic data object for describing an SWF configuration.
Code
public function height($height) {
$this->dimensions['height'] = $height;
return $this;
}