BOOKMARK
BOOKMARK is
an unsigned long data type that retains in memory a position in a table. The
data stored in a bookmark depends on the client application.
typedef ULONG BOOKMARK;
Remarks
MAPI defines
the following bookmarks:
BOOKMARK_BEGINNING
Seeks to the
beginning of the table.
BOOKMARK_CURRENT
Seeks to the
row in the table where the cursor is located.
BOOKMARK_END
Seeks to the
end of the table.
The client
application can create additional bookmarks. Created bookmarks are only useful
while a table is open. The client must free any created bookmarks when it
closes a table.
The BOOKMARK
unsigned long data type is defined in MAPIDEFS.H.
See Also