Text Property

Microsoft Office Web Discussions Client Language

Text Property

       

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.

Remarks

A discussion can contain up to 64 kilobytes of text.

Example

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?"