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

24 lines
483 B
PHP

<?php
require_once(HTML2PS_DIR.'value.generic.php');
class BorderWidth extends CSSValue {
var $left;
var $right;
var $top;
var $bottom;
function &copy() {
$value =& new BorderWidth($this->top, $this->right, $this->bottom, $this->left);
return $value;
}
function BorderWidth($top, $right, $bottom, $left) {
$this->left = $left->copy();
$this->right = $right->copy();
$this->top = $top->copy();
$this->bottom = $bottom->copy();
}
}
?>