如何使用 OpenXML 和 C# 旋转 Excel 电子表格单元格中的文本

发布于 2024-11-08 14:17:36 字数 390 浏览 0 评论 0原文

我正在尝试完成一个小应用程序,该应用程序正在创建 MS Excel 电子表格,其中填充了从数据库中获取的一些数据。我被一些事情困住了。其中之一是如何旋转电子表格单元格中的文本。我试图以这种方式做到这一点:

SpreadsheetStyle style = SpreadsheetReader.GetDefaultStyle(spreadSheet);
    style.AddAlignment(new Alignment() {
       TextRotation = 90
    });

但当然它不起作用。我正在使用 WorksheetWriter 类来构建 Excel 文档。

我在谷歌上找不到任何有用的东西,所以我希望在这里找到一些帮助:)

I'm trying to finish little application which is creating MS Excel spreadsheet filled with some data taken from a database. I got stucked with few things. One of these is how to rotate a text in a spreadsheet cell. I was trying to do it in that way:

SpreadsheetStyle style = SpreadsheetReader.GetDefaultStyle(spreadSheet);
    style.AddAlignment(new Alignment() {
       TextRotation = 90
    });

but of course it didn't work. I'm using WorksheetWriter class to build excel doc.

I couldn't find anything helpful in Google so I hope to find some help here :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文