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
"description": "PicoXLSX is a library to generate Microsoft Excel files (XLSX) in an easy and native way. This package is the meta package of PicoXLSX and should be used in most cases as dependency in your project. It used the dependencies of NanoXLSX"
4
+
"description": "PicoXLSX is a library to generate Microsoft Excel files (XLSX) in an easy and native way. This package is the meta package of PicoXLSX and should be used in most cases as dependency in your project. It uses the dependencies of NanoXLSX"
Copy file name to clipboardExpand all lines: Docs.IndexGenerator/Output/index.html
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ <h1>
20
20
<h2>API Documentation</h2>
21
21
<section>
22
22
<ulclass="list">
23
-
<li><ahref="v2/">PicoXLSX 3.x</a> — Current version</li>
23
+
<li><ahref="v3/">PicoXLSX 3.x</a> — Current version</li>
24
24
</ul>
25
25
</section>
26
26
@@ -47,7 +47,7 @@ <h1>
47
47
<h2>Meta Package v4.0.0-rc.1</h2>
48
48
<section>
49
49
<ulclass="list">
50
-
<li><strong>PicoXLSX</strong> — This package is the meta package of PicoXLSX and should be used in most cases as dependency in your project. It used the dependencies of NanoXLSX</li>
50
+
<li><strong>PicoXLSX</strong> — This package is the meta package of PicoXLSX and should be used in most cases as dependency in your project. It uses the dependencies of NanoXLSX</li>
51
51
</ul>
52
52
53
53
<p>There is no documentation for the meta package. Please see the section <b>Dependency Package Documentation</b> for the complete API documentation.</p>
<li><ahref="https://rabanti-github.github.io/NanoXLSX/NanoXLSX.Writer"><strong>NanoXLSX.Writer API</strong></a> — Writer component, to save XLSX files</li>
Copy file name to clipboardExpand all lines: MigrationGuide.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ There are some breaking changes, that are summarized in this migration guide.
9
9
10
10
1. The namespace `PicoXLSX` was changed to `NanoXLSX`, to reflect the integration of PicoXLSX into NanoXLSX. Therefore, all occurrences of `PicoXLSX` in the code have to be replaced by `NanoXLSX`.
11
11
2. All sub-classes, like `Cell.Address`, `Style.Font`, etc. are now independent classes. Therefore, all occurrences of these classes have to be adapted in the code, e.g. instead of `Style.Font font = new Font();`, `Font font = new Font();` is used. Additionally, some namespaces, like `NanoXLSX.Styles`, have to be added as usings.
12
-
3. All constanst and enum values were renamed to follow the C# naming conventions (PascalCase for public members). Therefore, all occurrences of these constants and enum values have to be adapted in the code.
12
+
3. All constants and enum values were renamed to follow the C# naming conventions (PascalCase for public members). Therefore, all occurrences of these constants and enum values have to be adapted in the code.
13
13
14
14
Important to note is, that PicoXLSX can now be extended by adding further NanoXLSX package references. For instance, if `NanoXLSX.Reader` is added as NuGet reference to PicoXLSX, it gets reader functionalities and has basically the same scope as NanoXLSX (Meta-Package).
15
15
@@ -21,9 +21,9 @@ The following guide lists all necessary changes, as well as changed behaviors of
21
21
22
22
### Workbook
23
23
24
-
- The method `Workbook.AddStyle(Style)` was completely removed, after marked as obsolete in version 2.x. Styles should be added directly to cells or ranges.
25
-
- The method `Workbook.AddStyleComponent(Style, AbstractStyle)` was completely removed, after marked as obsolete in version 2.x. Styles should be modified directly on cells, e.g. `workbook.CurrentWorksheet.Cells["A1"].CellStyle.CurrentFont.Bold = true;` or `workbook.CurrentWorksheet.Cells["A1"].CellStyle.Append(fontStyle)`.
26
-
- The methods `Workbook.RemoveStyle(Style)`, `Workbook.RemoveStyle(Style, bool)`, `Workbook.RemoveStyle(string)` and `Workbook.RemoveStyle(string, bool)` were completely removed, after marked as obsolete in version 2.x. Styles should be removed directly from cells (e.g. `workbook.CurrentWorksheet.Cells["A1"].RemoveStyle()`.
24
+
- The method `Workbook.AddStyle(Style)` was completely removed, after marked as obsolete in version 3.x. Styles should be added directly to cells or ranges.
25
+
- The method `Workbook.AddStyleComponent(Style, AbstractStyle)` was completely removed, after marked as obsolete in version 3.x. Styles should be modified directly on cells, e.g. `workbook.CurrentWorksheet.Cells["A1"].CellStyle.CurrentFont.Bold = true;` or `workbook.CurrentWorksheet.Cells["A1"].CellStyle.Append(fontStyle)`.
26
+
- The methods `Workbook.RemoveStyle(Style)`, `Workbook.RemoveStyle(Style, bool)`, `Workbook.RemoveStyle(string)` and `Workbook.RemoveStyle(string, bool)` were completely removed, after marked as obsolete in version 3.x. Styles should be removed directly from cells (e.g. `workbook.CurrentWorksheet.Cells["A1"].RemoveStyle()`.
0 commit comments