Files
luos/thirdparty/html2ps_pdf/value.height.php
Paula Quispe 9eb7d6cac2 HOR-2689
2017-08-03 17:00:30 -04:00

16 lines
314 B
PHP

<?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;
}
}
?>