Lines Matching refs:edge
65 $edge =& new EdgePDF();
66 $edge->width = $data['width'];
67 $edge->color =& new Color($data['color'], is_transparent($data['color']));
68 $edge->style = $data['style'];
69 $edge->_isDefaultColor = true;
70 return $edge;
74 $edge =& new EdgePDF();
77 $edge->width = $this->width->copy();
79 $edge->width = CSS_PROPERTY_INHERIT;
83 $edge->color = $this->color->copy();
85 $edge->color = CSS_PROPERTY_INHERIT;
88 $edge->style = $this->style;
89 $edge->_isDefaultColor = $this->_isDefaultColor;
91 return $edge;