Data.DB.TDataSet.Bookmark

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: public
Source:
Data.DB.pas
Data.DB.hpp
Unit: Data.DB
Parent: TDataSet

Delphi

property Bookmark: TBookmark read GetBookmark write GotoBookmark;

C++

__property TBookmark Bookmark = {read=GetBookmark, write=GotoBookmark};

Description

Specifies the current bookmark in the dataset.

Bookmark gets or sets the current bookmark in a dataset. A bookmark marks a location in a dataset so that an application can easily return to that location quickly.

An application can read Bookmark to retrieve the bookmark associated with the current record, and it can change the current record in the dataset by assigning a saved bookmark value to this property.

Note: Unidirectional datasets do not support bookmarks.

See Also