FORMAT_GENERAL
FORMAT_GENERAL = 'General'
$parent : \PhpOffice\PhpSpreadsheet\Spreadsheet|\PhpOffice\PhpSpreadsheet\Style\Style
Parent. Only used for supervisor.
__construct(boolean $isSupervisor = false, boolean $isConditional = false)
Create a new NumberFormat.
boolean | $isSupervisor | Flag indicating if this is a supervisor or not Leave this value at default unless you understand exactly what its ramifications are |
boolean | $isConditional | Flag indicating if this is a conditional style or not Leave this value at default unless you understand exactly what its ramifications are |
bindParent(\PhpOffice\PhpSpreadsheet\Spreadsheet|\PhpOffice\PhpSpreadsheet\Style\Style $parent, null|string $parentPropertyName = null) : \PhpOffice\PhpSpreadsheet\Style\Supervisor
Bind parent. Only used for supervisor.
\PhpOffice\PhpSpreadsheet\Spreadsheet|\PhpOffice\PhpSpreadsheet\Style\Style | $parent | |
null|string | $parentPropertyName |
getActiveSheet() : \PhpOffice\PhpSpreadsheet\Worksheet\Worksheet
Get the currently active sheet. Only used for supervisor.
getSharedComponent() : \PhpOffice\PhpSpreadsheet\Style\NumberFormat
Get the shared style component for the currently active cell in currently active sheet.
Only used for style supervisor.
applyFromArray(array $pStyles) : \PhpOffice\PhpSpreadsheet\Style\NumberFormat
Apply styles from array.
$spreadsheet->getActiveSheet()->getStyle('B2')->getNumberFormat()->applyFromArray(
[
'formatCode' => NumberFormat::FORMAT_CURRENCY_EUR_SIMPLE
]
);
array | $pStyles | Array containing style information |
setFormatCode(string $pValue) : \PhpOffice\PhpSpreadsheet\Style\NumberFormat
Set Format Code.
string | $pValue | see self::FORMAT_* |
setBuiltInFormatCode(integer $pValue) : \PhpOffice\PhpSpreadsheet\Style\NumberFormat
Set Built-In Format Code.
integer | $pValue |
toFormattedString(mixed $value, string $format, array $callBack = null) : string
Convert a value in a pre-defined format to a PHP string.
mixed | $value | Value to format |
string | $format | Format code, see = self::FORMAT_* |
array | $callBack | Callback function for additional formatting of string |
Formatted string