Data.DB.TDataSet.Found

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Found: Boolean read GetFound;

C++

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

Properties

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

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