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)

Syntax

Visual Basic (Declaration)
Public MustOverride Sub Reset( _ 
   ByVal PageMark As IPageMark _ 
)
C#
public abstract void Reset(
   IPageMark PageMark
)
C++
public:
 void Reset(
   IPageMark PageMark
) abstract 
J#
public abstract void Reset(
   IPageMark PageMark
)
JScript
public abstract  function Reset(
   PageMark : IPageMark
)

Parameters

PageMark
A PageMark object representing a previously saved page within the collection.

See Also