Provides access to members that control the GUID Set.
Members
Name | Description | |
---|---|---|
Add | Adds a guid to the set. | |
Count | The number of elements in the GUID set. | |
Delete | Deletes a guid from the set. | |
Find | Finds a guid in the set. | |
Next | Gets the next guid from the set. | |
Reset | Resets the internal cursor. | |
SetEmpty | Empties the GUID set. | |
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 |
---|