IObjectsEnumeratorInternal<T> Interface

Provides access to the internal functionality of ObjectsEnumerator<T>.

  Important

This interface is for internal use only and must not be accessed by the user code.

Definition

Namespace: SMath.Controls
Assembly: SMath.Controls (in SMath.Controls.dll) Version: 1.73.9126.0
C#
public interface IObjectsEnumeratorInternal<T> : IEnumerator<T>, 
	IDisposable, IEnumerator
where T : IDocumentObject
Implements
IEnumerator<T>, IEnumerator, IDisposable

Type Parameters

T

Properties

CurrentGets the element in the collection at the current position of the enumerator.
(Inherited from IEnumerator<T>)
FilterProtected Specifies whether the enumerator should hide all Objects protected by the locked collapsed Area Objects.
Objects Underlying list of Objects being enumerated.

Methods

DisposePerforms application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
(Inherited from IDisposable)
MoveNextAdvances the enumerator to the next element of the collection.
(Inherited from IEnumerator)
ResetSets the enumerator to its initial position, which is before the first element in the collection.
(Inherited from IEnumerator)

See Also