Data.Bind.ObjectScope.TBindSourceAdapter.EOF

From RAD Studio API Documentation
Jump to: navigation, search

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.

Note: The GetEOF method uses the GetCount method that must be overridden by descendant classes.

See Also