GroupEnumerator Class
Represents an object used to iterate over a collection of Group elements.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CETactical assembly)
Syntax
public class GroupEnumerator : EngineObject
Remarks
A GroupEnumerator is initially positioned before the first element in the collection and you must call MoveNext to advance the enumerator to the first element before you can retrieve it through the Current property.
Inheritance Hierarchy
System.Object (not available in C#)
EngineObject
GroupEnumerator
Platforms
Windows, Linux, Android
GroupEnumerator Members
The GroupEnumerator type has the following members.
Properties
Name | Description |
---|---|
Current | Gets the Group at the current position in the collection. |
IsDisposed | Gets a value that tells whether the current GroupEnumerator has been disposed. Inherited from EngineObject |
NativeHandle | Gets the native Carmenta Engine kernel object the current GroupEnumerator represents. Inherited from EngineObject |
Methods
Name | Description |
---|---|
Clone | Creates a copy of an object. Inherited from EngineObject |
Dispose | Releases the reference to the native Carmenta Engine kernel instance the EngineObject represents. Inherited from EngineObject |
Equals | Determines whether this instance is equal to another. Inherited from EngineObject |
MoveNext | Advances the GroupEnumerator to the next element in the collection. |
Reset | Resets the GroupEnumerator to its initial position, one before the first element in the collection. |