property Group.AllowPost as Boolean
Retrieves a value that indicates whether the news group allows posting articles.

TypeDescription
Boolean A boolean expression that indicates whether the news group allows posting articles. 
The AllowPost property specifies whether the user can post new articles to the news group.

The following sample displays a boolean value that indicates whether positing new articles is allowed 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.AllowPost
    n.Disconnect
End Sub