gpt4 book ai didi

c# - 表格单元格中的 Open XML SDK 文字处理垂直方向

转载 作者:行者123 更新时间:2023-11-30 21:04:50 26 4
gpt4 key购买 nike

有人知道我可以将表格单元格中的文本方向切换 90 度的方法吗?我正在使用 Open XML 在 Word 中创建一些标签模板,有些需要垂直文本方向。我正在尝试将 TextDirection 元素应用于单元格,但它不起作用...

var tc = new TableCell();
tc.Append(new TextDirection() { Val = TextDirectionValues.BottomToTopLeftToRight });

我试过...BottomToTopLeftToRightTopToBottomLeftToRightRotatedLefttoRightTopToBottomRotated

我是不是遗漏了什么或者我应该将它应用到不同的位置?

最佳答案

您需要将它应用到 TableCellProperties。

TableCell cell = new TableCell(
new TableCellProperties(
new TextDirection() { Val = TextDirectionValues.BottomToTopLeftToRight }),
new Paragraph(
new Run(
new Text("test"))));

关于c# - 表格单元格中的 Open XML SDK 文字处理垂直方向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12081507/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com