property Article.Body as String
Retrieves the article's body.

TypeDescription
String A string expression that specifies the body of the news article.

The Body property specifies the body of the news article. Use the Header property of the article to retrieve the header of the article. Information such of subject of the article can be found on the article's header. Use the Article property to get the text for the entire article including the header and body as well.

The following sample displays the body of the first article in the "c++.general" news group:

Dim n As New EXNNTPLibCtl.NNTP

Private Sub Form_Load()
    Dim g As EXNNTPLibCtl.Group
    n.Connect "news.devx.com"
    Set g = n.Group("c++.general")
    Debug.Print g.Articles.Item(g.Articles.First).Body
    n.Disconnect
End Sub