Initial Release 6

Function : Item (Field)
NSFItemInfoPrev - Get information about the previous item in a note.
----------------------------------------------------------------------------------------------------------

#include <nsfnote.h>

STATUS LNPUBLIC NSFItemInfoPrev(
NOTEHANDLE note_handle,
BLOCKID CurrItem,
const char far *item_name,
WORD name_len,
BLOCKID far *item_blockid_ptr,
WORD far *value_type_ptr,
BLOCKID far *value_blockid_ptr,
DWORD far *value_len_ptr
);

Description :

This function looks for the previous item (field) in a note. The function returns a variety of information -- enabling you to access each item's contents.

The BLOCKID values obtained using this function refer to memory within a note. This memory is managed by Domino and Notes, and should not be freed by the application.

Note: The items in a note are maintained in the order that they were added to the note. You cannot depend on this function to obtain items in the same order in which they appear in any form.

Note: To find all the items in a note, use NSFItemScan.


Parameters :

See Also :

NSFItemInfo
----------------------------------------------------------------------------------------------------------