.

HCLSoftware Business Partner
Domino Consulting Services
CRUCIAL Notes Tools
+1 212-599-2048

Domino Consulting Services
CRUCIAL Notes Tools
Domino administration
Notes development

Facebook Twitter YouTube
Chat now       
.
ProductsDownloadsNewsAbout usContact


Need a Domino Consultant? Call NotesMail +1 212-599-2048 - HCLSoftware Business Partner

JAVA/CORBA CLASSES


getPrevDocument method
Example

Gets the document immediately preceding the current document or a specified document in a collection.

Defined in

DocumentCollection

Syntax

public Document getPrevDocument()
   throws NotesException

public Document getPrevDocument(Document doc)
   throws NotesException

Parameters

Document doc


Return value

Document


Usage

In remote (IIOP) operations, getPrevDocument(Document doc) invalidates the cache and is therefore discouraged.

The preferred loop structure is getLastDocument() followed by getPrevDocument() until it returns null. For performance reasons, you should avoid using getNthDocument(int n) in a loop.

In loops you should recycle the Document object on each iteration. Use a temporary Document object to save and restore the object.

Language cross-reference

GetPrevDocument method in LotusScript NotesDocumentCollection class

NavigatePrevSelected @command in formula language

NavPrevSelected @command in formula language

Example
See Also