Description: | Removes the passed in company or contact from this contact group. |
Syntax: | object.RemoveMember(item) |
Parameters: | |
object | Required, the Contact Group object |
item | Required, a Company or a Contact object |
Remarks: | This method removes a company or contact from the contact group. |
Returns: | True if successful, False otherwise. |
Example: |
Set session = CreateObject("OfficeTalk.Session")
Call session.Logon(login name, password)
Set cntgrp = session.GetContactGroups.GetFirst
Set comp = cntgrp.GetCompanies.GetFirst
Call cntgrp.RemoveMember(comp)