(Contents)(Previous)(Next)

GetContacts()

Description: Returns the list of contacts belonging to this contact group.
Syntax: object.GetContacts()
Parameters:
object Required, the Contact Group object
Remarks: This method returns the list of contacts belonging to the contact group.
Returns: A Contact list object
Example:
Dim session As Object

Set session = CreateObject("OfficeTalk.Session")

Call session.Logon(login name, password)

Set cntgrp = session.GetContactGroups.GetFirst

Set conts = cntgrp.GetContacts

Set cont = conts.GetFirst


Next