Data.DB.TDataSet.Found

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 Found: Boolean read GetFound;

C++

__property bool Found = {read=GetFound, nodefault};

Description

Indicates whether or not moving to a different record is successful.

Check the status of Found to determine if a call to FindFirst, FindLast, FindNext or, FindPrior succeeds. If Found is true, success is indicated. If false, the move to a different record failed.

See Also