What I need is to insert a new line at the end of a text.

I try with run.Append(**new Break()**); but this simulates to pressing (Shift+Enter) keys, and if I want a justified text the latest line autofits with lot of spaces between word and word...

And another problem I have is the default font and size in this "Breaks"/"New Lines". I try to "Appen" paragraph propierties in this run (wich contains the break)... but seems that is not allowed.

link|improve this question

75% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Try using CarriageReturn instead.

run.Append(new CarrigeReturn());

http://msdn.microsoft.com/en-us/library/documentformat.openxml.wordprocessing.carriagereturn.aspx

link|improve this answer
Thanks!! It works great!! The only thing i still need to solve is the problem with the font and font-size... how can I specify it for the height of a blank space? – Displaying May 5 '11 at 11:58
@Displaying, glad this worked for your immediate need. Please ask a new question for the new font-size issue. I don't know the answer off-hand. – Samuel Neff May 5 '11 at 16:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.