(Contents)(Previous)(Next)

GetBody()

Description: Returns the text of the conversation body
Syntax: object.GetBody()
Parameters:
object Required, the Conversation object
Remarks: This method returns the text of the body of the conversation.
Returns: A string representing the body of the conversation
Example:
Dim session As Object

Set session = CreateObject("OfficeTalk.Session")

Set user = session.Logon(login name, password)

Set conv = session.GetConversations.GetFirst

MsgBox conv.GetBody


Next