setStyleByArray($style); } /** * Get points * * @return string */ public function getPoints() { return $this->points; } /** * Set points * * @param string $value * @return self */ public function setPoints($value = null) { $this->points = $value; return $this; } /** * Get roundness * * @return int|float */ public function getRoundness() { return $this->roundness; } /** * Set roundness * * @param int|float $value * @return self */ public function setRoundness($value = null) { $this->roundness = $this->setNumericVal($value, null); return $this; } /** * Get frame * * @return \PhpOffice\PhpWord\Style\Frame */ public function getFrame() { return $this->frame; } /** * Set frame * * @param mixed $value * @return self */ public function setFrame($value = null) { $this->setObjectVal($value, 'Frame', $this->frame); return $this; } /** * Get fill * * @return \PhpOffice\PhpWord\Style\Fill */ public function getFill() { return $this->fill; } /** * Set fill * * @param mixed $value * @return self */ public function setFill($value = null) { $this->setObjectVal($value, 'Fill', $this->fill); return $this; } /** * Get outline * * @return \PhpOffice\PhpWord\Style\Outline */ public function getOutline() { return $this->outline; } /** * Set outline * * @param mixed $value * @return self */ public function setOutline($value = null) { $this->setObjectVal($value, 'Outline', $this->outline); return $this; } /** * Get shadow * * @return \PhpOffice\PhpWord\Style\Shadow */ public function getShadow() { return $this->shadow; } /** * Set shadow * * @param mixed $value * @return self */ public function setShadow($value = null) { $this->setObjectVal($value, 'Shadow', $this->shadow); return $this; } /** * Get 3D extrusion * * @return \PhpOffice\PhpWord\Style\Extrusion */ public function getExtrusion() { return $this->extrusion; } /** * Set 3D extrusion * * @param mixed $value * @return self */ public function setExtrusion($value = null) { $this->setObjectVal($value, 'Extrusion', $this->extrusion); return $this; } }