You are here

public static function PHPExcel_Shared_String::setDecimalSeparator in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/String.php \PHPExcel_Shared_String::setDecimalSeparator()

* Set the decimal separator. Only used by PHPExcel_Style_NumberFormat::toFormattedString() * to format output by PHPExcel_Writer_HTML and PHPExcel_Writer_PDF * *

Parameters

string $pValue Character for decimal separator:

2 calls to PHPExcel_Shared_String::setDecimalSeparator()
AdvancedValueBinderTest::testCurrency in vendor/phpoffice/phpexcel/unitTests/Classes/PHPExcel/Cell/AdvancedValueBinderTest.php
@dataProvider provider
NumberFormatTest::setUp in vendor/phpoffice/phpexcel/unitTests/Classes/PHPExcel/Style/NumberFormatTest.php

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/String.php, line 708

Class

PHPExcel_Shared_String
PHPExcel_Shared_String

Code

public static function setDecimalSeparator($pValue = '.') {
  self::$_decimalSeparator = $pValue;
}