asp.net - Open XML - Word: Create tab with leading dots (.NET 3.5 - C#) -
i want create tab leading dots in openxml word.

do know how it?
 found:
 http://officeopenxml.com/wptab.php http://msdn.microsoft.com/en-us/library/documentformat.openxml.wordprocessing.tabchar.aspx
 don't know how translate c# code.
so create paragraphproperties:
paragraphproperties pproperties = new paragraphproperties(       new tabs(              new tabstop() { val = tabstopvalues.right, position = 4320, leader = tabstopleadercharvalues.dot }      ) ); and added paragraph , works.