asp.net - Open XML - Word: Create tab with leading dots (.NET 3.5 - C#) -


i want create tab leading dots in openxml word.

enter image description here

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.


Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -