我想在OpenXML for Word中创建带有这样的前导点的标签。
你知道怎么做吗?
这是我发现的:
http://officeopenxml.com/WPtab.php
http://msdn.microsoft.com/en-us/library/documentformat.openxml.wordprocessing.tabchar.aspx
但我不知道如何翻译成C#代码。
答案 0 :(得分:1)
所以我创建了这个ParagraphProperties:
ParagraphProperties pProperties = new ParagraphProperties(
new Tabs(
new TabStop() { Val = TabStopValues.Right, Position = 4320, Leader = TabStopLeaderCharValues.Dot }
)
);
并添加到Paragraph
并且有效。