Provides a forward-only cursor to enumerate through frames in a frame collection.
Namespace:
Aurigma.GraphicsMill.Codecs
Assembly:
Aurigma.GraphicsMill.Codecs.MediaProcessor (in Aurigma.GraphicsMill.Codecs.MediaProcessor.dll)
Public Interface IFrameEnumerator _ Implements IEnumerator
public interface IFrameEnumerator : IEnumerator
This interface inherits from and extends the IEnumerator interface.
Initially, the enumerator is positioned before the first element in the collection. At this position, calling Current throws an exception. Therefore, you must call MoveNext() to advance the enumerator to the first element of the collection before reading the value of Current.
After the end of the collection is passed, the enumerator is positioned after the last element in the collection, and calling MoveNext() returns false. If the last call to MoveNext() returned false, calling Current throws an exception.