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
* Added graphicframe name fallback and child pos
* Ensured getter does not update collection
* Added ifs for comments
* Commit before this one also added overwrite
* Added other test
* Ensured rtCollection sets and gets cell store correctly
* Ensured flags as appropriate. Still bugged for copy
* Fixed nessed up if
* Fixed failing tests+added convert method
* Cleanup - removed unnecesary comments
* Removed superflous usings
* added patch notes
Copy file name to clipboardExpand all lines: docs/articles/breakingchanges.md
+6-1Lines changed: 6 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -215,4 +215,9 @@ Renaming worksheet's will now change the formula correctly to include single quo
215
215
`ExcelColor.Tint` from `decimal` to `double`.
216
216
217
217
### 8.0.2
218
-
* Removed base class from ExcelVmlDrawingPosition and with that the Load, UpdateXml methods and the RowOff and ColOff properties as they were duplicates.
218
+
* Removed base class from ExcelVmlDrawingPosition and with that the Load, UpdateXml methods and the RowOff and ColOff properties as they were duplicates.
219
+
220
+
### 8.5.5
221
+
*`ws.Cells["A1"].RichText` no longer sets cells with `null` to `string.empty`
222
+
* .RichText no longer sets the cell or contents to be RichText automatically.
223
+
This is instead done when properties such as; `.Text`, `.Add` or `.Insert` are set on the .RichText property.
Copy file name to clipboardExpand all lines: docs/articles/fixedissues.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,11 @@
1
1
# Features / Fixed issues - EPPlus 8
2
+
3
+
## Version 8.5.5
4
+
### Minor Features
5
+
* Ranges can now convert their values to richText via ´ConvertToRichText()´ e.g. ´ws.Cells["A1"].ConvertToRichText()´
6
+
### Fixed issues
7
+
* Several issues related to RichText in ranges. Simply looking at the .RichText attribute no longer changes the cell value. Setting a propert e.g. ´range.RichText.Text = "Hi"´ or using ConvertToRichText() actually changes the value.
8
+
2
9
## Version 8.5.4
3
10
### Minor Features
4
11
* Added ´IncludeInHtmlOnly´ option to the ´ePictureInclude´ enum. This allows the HTML Exporter to include pictures directly in the HTML output rather than in the CSS.
0 commit comments