使用 Excel 对象模型在 Excel 中内嵌单元格格式
我有一个具有内联格式的 Excel 表格 - 例如,单元格中只有一个单词是粗体。当我读取单元格值时,我得到一个纯文本 BSTR。我怎样才能得到格式?
我在 AX 中执行此操作,但我想这与 C# 或使用 Excel Interop 库的其他任何内容中的操作相同。
谢谢
I have an excel table with inline formatting - only one word in the cell is bold, for example. When I read the cell value I get a plain text BSTR. How can I get the formatting?
I'm doing this in AX but I guess it's the same as in C# or anything else that uses the Excel Interop library.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要单元格的
Characters
属性。引用为expression.Characters(Start, Length)
例如
Range("A1").Characters(3,1).Font.Bold
将判断第三个字符是否为 粗体You want the
Characters
property of the cell. Referenced asexpression.Characters(Start, Length)
eg
Range("A1").Characters(3,1).Font.Bold
will tell if the third character is Bold