Data.DB.TDataSet.Bookmark

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Bookmark: TBookmark read GetBookmark write GotoBookmark;

C++

__property System::DynamicArray<System::Byte> Bookmark = {read=GetBookmark, write=GotoBookmark};

Properties

Type Visibility Source Unit Parent
property public
Data.DB.pas
Data.DB.hpp
Data.DB TDataSet

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