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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,6 +34,7 @@ and this project adheres to [Semantic Versioning](https://semver.org).
34
34
- Print Area and Row Break. [Issue #1275](https://github.com/PHPOffice/PhpSpreadsheet/issues/1275)[PR #4450](https://github.com/PHPOffice/PhpSpreadsheet/pull/4450)
35
35
- Copy Styles after insertNewColumnBefore. [Issue #1425](https://github.com/PHPOffice/PhpSpreadsheet/issues/1425)[PR #4468](https://github.com/PHPOffice/PhpSpreadsheet/pull/4468)
36
36
- Xls Writer Treat Hyperlink Starting with # as Internal. [Issue #56](https://github.com/PHPOffice/PhpSpreadsheet/issues/56)[PR #4453](https://github.com/PHPOffice/PhpSpreadsheet/pull/4453)
- ODS Handling of Ceiling and Floor. [Issue #477](https://github.com/PHPOffice/PhpSpreadsheet/issues/407)[PR #4466](https://github.com/PHPOffice/PhpSpreadsheet/pull/4466)
38
39
- Xlsx Reader Do Not Process Printer Settings for Dataonly. [Issue #4477](https://github.com/PHPOffice/PhpSpreadsheet/issues/4477)[PR #4480](https://github.com/PHPOffice/PhpSpreadsheet/pull/4480)
Copy file name to clipboardExpand all lines: docs/topics/recipes.md
+35-11Lines changed: 35 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ finding a specific document in a file repository or a document
20
20
management system. For example Microsoft Sharepoint uses document
21
21
metadata to search for a specific document in its document lists.
22
22
23
-
<details>
23
+
<detailsmarkdown>
24
24
<summary>Click here for details of Spreadsheet Document Properties</summary>
25
25
26
26
These are accessed in MS Excel from the "Info" option on the "File" menu:
@@ -67,7 +67,7 @@ $spreadsheet->getProperties()
67
67
68
68
You can choose which properties to set or ignore.
69
69
70
-
<details>
70
+
<detailsmarkdown>
71
71
<summary>Click here for details of Property Getters/Setters</summary>
72
72
73
73
PhpSpreadsheet provides specific getters/setters for a number of pre-defined properties.
@@ -90,7 +90,7 @@ PhpSpreadsheet provides specific getters/setters for a number of pre-defined pro
90
90
91
91
</details>
92
92
93
-
<details>
93
+
<detailsmarkdown>
94
94
<summary>Click here for details of Custom Properties</summary>
95
95
96
96
Additionally, PhpSpreadsheet supports the creation and reading of custom properties for those file formats that accept custom properties.
@@ -143,7 +143,7 @@ $spreadsheet->getProperties()
143
143
144
144
A Spreadsheet consists of (very rarely) none, one or more Worksheets. If you have 1 or more Worksheets, then one (and only one) of those Worksheets can be "Active" (viewed or updated) at a time, but there will always be an "Active" Worksheet (unless you explicitly delete all of the Worksheets in the Spreadsheet).
145
145
146
-
<details>
146
+
<detailsmarkdown>
147
147
<summary>Click here for details about Worksheets</summary>
148
148
149
149
When you create a new Spreadsheet in MS Excel, it creates the Spreadsheet with a single Worksheet ("Sheet1")
@@ -278,7 +278,7 @@ define your own values as long as they are a valid MS Excel format.
278
278
PhpSpreadsheet also provides a number of Wizards to help you create
279
279
Date, Time and DateTime format masks.
280
280
281
-
<details>
281
+
<detailsmarkdown>
282
282
<summary>Click here for an example of the Date/Time Wizards</summary>
0 commit comments