1

我想在 OpenXML for Word 中创建带有前导点的选项卡。

在此处输入图像描述

你知道怎么做吗?
这就是我发现的:
http://officeopenxml.com/WPtab.php http://msdn.microsoft.com/en-us/library/documentformat.openxml.wordprocessing.tabchar.aspx
但我不知道如何翻译成 C# 代码。

4

1 回答 1

2

所以我创建了这个 ParagraphProperties:

ParagraphProperties pProperties = new ParagraphProperties( 
     new Tabs(
             new TabStop() { Val = TabStopValues.Right, Position = 4320, Leader = TabStopLeaderCharValues.Dot }
     )
);

并添加到Paragraph它的工作原理。

于 2013-04-25T17:05:01.300 回答