(Contents)(Previous)(Next)

GetBodyHTML()

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

Set session = CreateObject("OfficeTalk.Session")

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

Set conv = session.GetConversations.GetFirst

MsgBox conv.GetBodyHTML


Next