property Article.Article as String
Displays the header, a blank line, and the body of the article.

TypeDescription
String A string expression that indicates the content of the article.
The Article property gives the header and the body of the news article. Use the Body property to retrieve only the body of the article. Use the Header property to get the header of the news article. 

The following sample displays the first article in the first group available on the news server:

Dim n As New EXNNTPLibCtl.NNTP

Private Sub Form_Load()
    Dim g As EXNNTPLibCtl.Group
    n.Connect "news.devx.com"
    Set g = n.Groups.Item(0)
    Debug.Print g.Articles.Item(g.Articles.First).Article
    n.Disconnect
End Sub

The following sample displays the first article on the "c++.announcements" 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++.announcements")
    Debug.Print g.Articles.Item(g.Articles.First).Article
    n.Disconnect
End Sub