Exemple #1
0
 /**
  * Get the background color
  *
  * @return string background color
  */
 public function getBackgroundColor($asString = false)
 {
     if ($this->_backgroundColor === null) {
         $this->setBackgroundColor(0, 0, 0);
     }
     if ($asString) {
         return $this->_backgroundColor->__toString();
     }
     return $this->_backgroundColor;
 }