You are here

protected property PHPExcel_Helper_HTML::$startTagCallbacks in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Helper/HTML.php \PHPExcel_Helper_HTML::startTagCallbacks

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Helper/HTML.php, line 536

Class

PHPExcel_Helper_HTML

Code

protected $startTagCallbacks = array(
  'font' => 'startFontTag',
  'b' => 'startBoldTag',
  'strong' => 'startBoldTag',
  'i' => 'startItalicTag',
  'em' => 'startItalicTag',
  'u' => 'startUnderlineTag',
  'ins' => 'startUnderlineTag',
  'del' => 'startStrikethruTag',
  'sup' => 'startSuperscriptTag',
  'sub' => 'startSubscriptTag',
);