You are here

public static function PHPExcel_Shared_Font::setTrueTypeFontPath in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Font.php \PHPExcel_Shared_Font::setTrueTypeFontPath()

* Set the path to the folder containing .ttf files. There should be a trailing slash. * Typical locations on variout some platforms: * <ul> * <li>C:/Windows/Fonts/</li> * <li>/usr/share/fonts/truetype/</li> * <li>~/.fonts/</li> * </ul> * *

Parameters

string $pValue:

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Font.php, line 228

Class

PHPExcel_Shared_Font
PHPExcel_Shared_Font

Code

public static function setTrueTypeFontPath($pValue = '') {
  self::$trueTypeFontPath = $pValue;
}