IGUIDSet Interface

Provides access to members that control the GUID Set.

Members

Name Description
Method Add Adds a guid to the set.
Method Count The number of elements in the GUID set.
Method Delete Deletes a guid from the set.
Method Find Finds a guid in the set.
Method Next Gets the next guid from the set.
Method Reset Resets the internal cursor.
Method SetEmpty Empties the GUID set.
Method SetReserve Sets the number of buckets in the GUID set to the most appropriate to contain at least bucketCount elements.

IGUIDSet.Add Method

Adds a guid to the set.

Public Sub Add ( _
    ByVal GUID As Guid _
)
public void Add (
    Guid GUID
);

IGUIDSet.Count Method

The number of elements in the GUID set.

Public Function Count ( _
) As Integer
public int Count (
);

IGUIDSet.Delete Method

Deletes a guid from the set.

Public Sub Delete ( _
    ByVal GUID As Guid _
)
public void Delete (
    Guid GUID
);

IGUIDSet.Find Method

Finds a guid in the set.

Public Sub Find ( _
    ByVal GUID As Guid, _
    ByRef Exists As Boolean _
)
public void Find (
    Guid GUID,
    ref bool Exists
);

IGUIDSet.Next Method

Gets the next guid from the set.

Public Sub Next ( _
    ByRef GUID As Guid& _
)
public void Next (
    ref Guid& GUID
);

IGUIDSet.Reset Method

Resets the internal cursor.

Public Sub Reset ( _
)
public void Reset (
);

IGUIDSet.SetEmpty Method

Empties the GUID set.

Public Sub SetEmpty ( _
)
public void SetEmpty (
);

IGUIDSet.SetReserve Method

Sets the number of buckets in the GUID set to the most appropriate to contain at least bucketCount elements.

Public Sub SetReserve ( _
    ByVal bucketCount As Integer _
)
public void SetReserve (
    int bucketCount
);

Classes that implement IGUIDSet

Classes Description

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.