We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
When I comment a cell in Excel, Excel automatically adds my name at the top of the comment, in bold font.
This is what I get in comment1.xml:
comment1.xml
<commentList> <comment ref="A1" authorId="0"> <text> <r> <rPr><b/><sz val="9"/><color indexed="81"/><rFont val="Tahoma"/><charset val="1"/></rPr> <t>Stéphane Laurent:</t> </r> <r> <rPr><sz val="9"/><color indexed="81"/><rFont val="Tahoma"/><charset val="1"/></rPr> <t xml:space="preserve"> hello</t> </r> </text> </comment> </commentList>
When I read the xlsx file with toXlsx and when I rewrite it, without modifying anything, my name is not in bold font anymore.
toXlsx
This is the XlsxText I get when I read the file:
XlsxText
XlsxRichText [ RichTextRun { _richTextRunProperties = Just RunProperties { _runPropertiesBold = Nothing , _runPropertiesCharset = Just 1 , _runPropertiesColor = Just Color { _colorAutomatic = Nothing , _colorARGB = Nothing , _colorTheme = Nothing , _colorTint = Nothing } , _runPropertiesCondense = Nothing , _runPropertiesExtend = Nothing , _runPropertiesFontFamily = Nothing , _runPropertiesItalic = Nothing , _runPropertiesOutline = Nothing , _runPropertiesFont = Just "Tahoma" , _runPropertiesScheme = Nothing , _runPropertiesShadow = Nothing , _runPropertiesStrikeThrough = Nothing , _runPropertiesSize = Just 9.0 , _runPropertiesUnderline = Nothing , _runPropertiesVertAlign = Nothing } , _richTextRunText = "St\233phane Laurent:" } , RichTextRun { _richTextRunProperties = Just RunProperties { _runPropertiesBold = Nothing , _runPropertiesCharset = Just 1 , _runPropertiesColor = Just Color { _colorAutomatic = Nothing , _colorARGB = Nothing , _colorTheme = Nothing , _colorTint = Nothing } , _runPropertiesCondense = Nothing , _runPropertiesExtend = Nothing , _runPropertiesFontFamily = Nothing , _runPropertiesItalic = Nothing , _runPropertiesOutline = Nothing , _runPropertiesFont = Just "Tahoma" , _runPropertiesScheme = Nothing , _runPropertiesShadow = Nothing , _runPropertiesStrikeThrough = Nothing , _runPropertiesSize = Just 9.0 , _runPropertiesUnderline = Nothing , _runPropertiesVertAlign = Nothing } , _richTextRunText = "\r\nhello" } ]
I think that _runPropertiesBold should be Just True for the first line.
_runPropertiesBold
Just True
The text was updated successfully, but these errors were encountered:
Hi @stla that seems to be another place that needs to be fixed as a part of #69 I'll create a fix
Sorry, something went wrong.
Closed by 83907df
No branches or pull requests
Hello,
When I comment a cell in Excel, Excel automatically adds my name at the top of the comment, in bold font.
This is what I get in
comment1.xml
:When I read the xlsx file with
toXlsx
and when I rewrite it, without modifying anything, my name is not in bold font anymore.This is the
XlsxText
I get when I read the file:I think that
_runPropertiesBold
should beJust True
for the first line.The text was updated successfully, but these errors were encountered: