I can't find the option to align my text. Could someone (probably Rob ) put me out of my misery (here's a little bit of the code that I have). So taking the text "Collaboration Report", how can I centre it?

vb Code:
  1. oWord = CType(CreateObject("Word.Application"), Word.Application)
  2.         oWord.Visible = False
  3.         oDoc = oWord.Documents.Add
  4.  
  5.         'Insert a paragraph at the beginning of the Word Doc
  6.         oPara1 = oDoc.Content.Paragraphs.Add
  7.         oPara1.Range.Text = "Collaboration Report"
  8.         'Want to specify centre alignment here if I can ???
  9.         oPara1.Range.Font.Bold = 1
  10.         oPara1.Format.SpaceAfter = 6
  11.         oPara1.Range.InsertParagraphAfter()