Table of Contents

Class PdfLoadedPageEnumerator

Namespace
Syncfusion.Pdf.Parsing
Assembly
Syncfusion.Pdf.Portable.dll

Implements enumerator to the loaded page collection.

public class PdfLoadedPageEnumerator : IEnumerator
Inheritance
PdfLoadedPageEnumerator
Implements
Inherited Members

Constructors

PdfLoadedPageEnumerator(PdfLoadedPageCollection)

Initializes a new instance of the PdfLoadedPageEnumerator class.

public PdfLoadedPageEnumerator(PdfLoadedPageCollection collection)

Parameters

collection PdfLoadedPageCollection

The PdfLoadedPageCollection.

Properties

Current

Gets the current element in the collection.

public object Current { get; }

Property Value

object

Exceptions

InvalidOperationException

The enumerator is positioned before the first element of the collection or after the last element.

Methods

MoveNext()

Advances the enumerator to the next element of the collection.

public bool MoveNext()

Returns

bool

true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection.

Exceptions

InvalidOperationException

The collection was modified after the enumerator was created.

Reset()

Sets the enumerator to its initial position, which is before the first element in the collection.

public void Reset()

Exceptions

InvalidOperationException

The collection was modified after the enumerator was created.