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

24 lines
451 B
PHP

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