(Contents)(Previous)(Next)

GetContact()

Description: Returns the contact that is associated with the conversation.
Syntax: object.GetContact()
Parameters:
object Required, the Conversation object
Remarks: This method returns the contact that is associated with the conversation.
Returns: A Contact object
Example:
Dim session As Object

Set session = CreateObject("OfficeTalk.Session")

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

Set conv = session.GetConversations.GetFirst

Set cont = conv.GetContact


Next