Hi,
when you start working with word programmatically, many a times you will have to add some text in the word document with formatting. Word automation gives you easy way top format the text that you are writing in the Word document programmatically.
To make the same impact as would an enter button in the word document we can use the following code.
oWord.Selection.TypeParagraph();
Basically this will enter a new paragraph in the word document. But you are in a bullet mode than this will take you to next line and also add the next bullet in the sequence.
Some of the common word formatting functionality can easily be performed with the help of word automation.