You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 2, 2019. It is now read-only.
Copy file name to clipboardExpand all lines: Documentation/markdown/Overview/08-Recipes.md
+13-11Lines changed: 13 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -103,13 +103,13 @@ This is regardless of which language version of Microsoft Office Excel may have
103
103
104
104
When the final workbook is opened by the user, Microsoft Office Excel will take care of displaying the formula according the applications language. Translation is taken care of by the application!
105
105
106
-
The following line of code writes the formula '=IF(C4>500,"profit","loss")' into the cell B8. Note that the formula must start with "=" to make PHPExcel recognise this as a formula.
106
+
The following line of code writes the formula '=IF(C4>500,"profit","loss")' into the cell B8. Note that the formula must start with "=" to make PHPExcel recognise this as a formula.
Excel measures row height in points, where 1 pt is 1/72 of an inch (or about 0.35mm). The default value is 12.75 pts; and the permitted range of values is between 0 and 409 pts, where 0 pts is a hidden row.
855
+
854
856
### Show/hide a row
855
857
856
858
To set a worksheet''s row visibility, you can use the following code. The following example hides row number 10.
@@ -1059,7 +1061,7 @@ Sometimes, one really wants to output a file to a client''s browser, especially
1059
1061
2. Output HTTP headers for the type of document you wish to output
1060
1062
3. Use the PHPExcel_Writer_* of your choice, and save to "php://output"
1061
1063
1062
-
PHPExcel_Writer_Excel2007 uses temporary storage when writing to php://output. By default, temporary files are stored in the script's working directory. When there is no access, it falls back to the operating system's temporary files location.
1064
+
PHPExcel_Writer_Excel2007 uses temporary storage when writing to php://output. By default, temporary files are stored in the script's working directory. When there is no access, it falls back to the operating system's temporary files location.
1063
1065
1064
1066
__This may not be safe for unauthorized viewing!__
1065
1067
Depending on the configuration of your operating system, temporary storage can be read by anyone using the same temporary storage folder. When confidentiality of your document is needed, it is recommended not to use php://output.
@@ -1146,7 +1148,7 @@ To set a worksheet's zoom level, the following code can be used:
0 commit comments