3
In the creation of some spreadsheets with Openxml, I came to doubt the difference between:
CellValues.InlineStringCellValues.String
There is some practical difference when inserting texts (e.g.: "hello world"; "stackoverflow")?
3
In the creation of some spreadsheets with Openxml, I came to doubt the difference between:
CellValues.InlineStringCellValues.StringThere is some practical difference when inserting texts (e.g.: "hello world"; "stackoverflow")?
3
I went to find a response in the OS who speaks of this:
CellValues.StringIt is used to store the text of the formula used in the cell. XML would look:
<x:c r="C6" s="1" vm="15" t="str">
<x:f>CUBEVALUE("xlextdat9 Adventure Works",C$5,$A6)</x:f>
<x:v>2838512.355</x:v>
</x:c>
CellValues.InlineStringIt is used to store formatted text in the cell as opposed to being the cell code. Note that the normal would be to use the SharedStringTable for that. XML would be:
<x:c r="B2" t="inlineStr">
<is><t>test string</t></is>
</c>
Browser other questions tagged c# .net open-xml-office
You are not signed in. Login or sign up in order to post.