Files
luos/thirdparty/html2ps_pdf/value.height.php

16 lines
314 B
PHP
Raw Normal View History

2010-12-02 23:34:41 +00:00
<?php
require_once(HTML2PS_DIR.'value.generic.percentage.php');
class ValueHeight extends CSSValuePercentage {
function fromString($value) {
return CSSValuePercentage::_fromString($value, new ValueHeight);
}
function &copy() {
$value =& parent::_copy(new ValueHeight);
return $value;
}
}
?>