PdfPortfolioFieldDictionary.Enumerator Struct
Enumerates the entries of a PdfPortfolioFieldDictionary.
public struct Enumerator : IEnumerator<KeyValuePair<PdfName, PdfPortfolioField>>, IDisposable, IEnumerator
Public Structure Enumerator
Implements IEnumerator(Of KeyValuePair(Of PdfName, PdfPortfolioField)), IDisposable, IEnumerator
Implements
System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<PdfName, PdfPortfolioField>>
System.IDisposable
System.Collections.IEnumerator
Properties
Current
Gets the entry at the current position of the enumerator.
public readonly KeyValuePair<PdfName, PdfPortfolioField> Current { get; }
Public ReadOnly Property Current As KeyValuePair(Of PdfName, PdfPortfolioField)
Property Value
- System.Collections.Generic.KeyValuePair<PdfName, PdfPortfolioField>
The entry in the PdfPortfolioFieldDictionary at the current position of the enumerator.
Methods
Dispose()
Releases all resources used by the PdfPortfolioFieldDictionary.Enumerator.
MoveNext()
Advances the enumerator to the next entry of the PdfPortfolioFieldDictionary.
Returns
- System.Boolean
true if the enumerator was successfully advanced to the next entry; false if the enumerator has passed the end of the collection.
Exceptions
- System.InvalidOperationException
The collection was modified after the enumerator was created.
Implements
System.Collections.Generic.IEnumerator<T>
System.IDisposable
System.Collections.IEnumerator