Open XML - Word:带有前导点的创建选项卡(.NET 3.5 - C#)

时间:2013-04-25 15:55:19

标签: c# asp.net ms-word openxml openxml-sdk

我想在OpenXML for Word中创建带有这样的前导点的标签。

enter image description here

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

1 个答案:

答案 0 :(得分:1)

所以我创建了这个ParagraphProperties:

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

并添加到Paragraph并且有效。