Files
luos/thirdparty/html2ps_pdf/value.border.width.class.php

24 lines
483 B
PHP
Raw Normal View History

2010-12-02 23:34:41 +00:00
<?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();
}
}
?>