public function PHPExcel_RichText_TextElement::setText in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/RichText/TextElement.php \PHPExcel_RichText_TextElement::setText()
* Set text * *
Parameters
$pText string Text: * @return PHPExcel_RichText_ITextElement
Overrides PHPExcel_RichText_ITextElement::setText
1 call to PHPExcel_RichText_TextElement::setText()
- PHPExcel_RichText_Run::__construct in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ RichText/ Run.php - Create a new PHPExcel_RichText_Run instance
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ RichText/ TextElement.php, line 69
Class
- PHPExcel_RichText_TextElement
- PHPExcel_RichText_TextElement
Code
public function setText($pText = '') {
$this->_text = $pText;
return $this;
}