使用 Excel 对象模型在 Excel 中内嵌单元格格式

发布于 2024-12-23 14:25:01 字数 173 浏览 0 评论 0原文

我有一个具有内联格式的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绅刃 2024-12-30 14:25:01

您需要单元格的 Characters 属性。引用为
expression.Characters(Start, Length)

例如 Range("A1").Characters(3,1).Font.Bold 将判断第三个字符是否为 粗体

You want the Characters property of the cell. Referenced as
expression.Characters(Start, Length)

eg Range("A1").Characters(3,1).Font.Bold will tell if the third character is Bold

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文