Sets the enumerator back to a specified page of results. Call this method after establishing the current page mark with the
Namespace: FileNet.Api.Collection
Assembly: FileNet.Api (in filenet.api.dll)
GetPageMark
method. You must call NextPage
to position the enumerator to the marked page. As an example, if you call
twice, the enumerator is positioned on the second page of elements. You can then call
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
followed by
).
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
object representing a previously saved page within the collection.PageMark