Sets the enumerator back to a specified page of results. Call this method after establishing the current page mark with the GetPageMark method. You must call NextPage to position the enumerator to the marked page.

As an example, if you call NextPage twice, the enumerator is positioned on the second page of elements. You can then call GetPageMark to get and save the page mark for that second page, which you can use later to reposition the enumerator on the second page again (by calling Reset(PageMark) followed by NextPage).

Namespace:  FileNet.Api.Collection
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
Sub Reset ( _
	PageMark As IPageMark _
)
C#
void Reset(
	IPageMark PageMark
)
Visual C++
void Reset(
	IPageMark^ PageMark
)
JavaScript
function reset(PageMark);

Parameters

PageMark
Type: FileNet.Api.Collection..::.IPageMark
A PageMark object representing a previously saved page within the collection.

ToggleSee Also