Microsoft Chat Server SDK Reference

Remove Method

This method deletes the specified access entry.

Syntax

ChatAccessEntries.Remove(Index|Entry)

Parameters

Index
Numeric value representing index of entry in collection.
Entry
A reference to an existing ChatAccessEntry object from the collection.

Remarks

You can use either Index or Entry, but not both.

The following example demonstrates how to remove an entry from the collection using a reference to the entry:

Dim Entry1 As CHATSVCLib.IChatAccessEntry
Set Entry1 = ChatAccessEntries(1)
ChatAccessEntries.Remove(Entry1)

© 1998 Microsoft Corporation. All rights reserved.