Returns or sets a String representing the body text of the specified Discussion object.
expression.Text
expression    Required. An expression that returns one of the objects in the Applies To list.
A discussion can contain up to 64 kilobytes of text.
This example sets the specified discussion's text to "Who do I see to get more staples?".
Dim dscDiscussions As DiscussionsSet dscDiscussions = _
OpenDiscussions("http://samples.microsoft.com")
dscDiscussions(1).Discussions(3).Text = _
"Who do I see to get more staples?"