Warning: session_start(): Session cannot be started after headers have already been sent in /home/tvrreohg/public_html/manga.php on line 13
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 float|int
*/
public function getRoundness()
{
return $this->roundness;
}
/**
* Set roundness.
*
* @param float|int $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;
}
}