Data.Bind.ObjectScope.TBindSourceAdapter.EOF
Delphi
property Eof: Boolean read GetEOF;
C++
__property bool Eof = {read=GetEOF, nodefault};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | Data.Bind.ObjectScope.pas Data.Bind.ObjectScope.hpp |
Data.Bind.ObjectScope | TBindSourceAdapter |
Description
Indicates if the source adapter is positioned in the last record.
Read EOF (end of file) to determine if the source adapter is positioned in the last record.
This property uses the getter method GetEOF, that returns True
if the active record is the last record or if there are no records. It returns False
otherwise.