Data.DB.TDataSet.Bof
Delphi
property Bof: Boolean read FBOF;
C++
__property bool Bof = {read=FBOF, nodefault};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | Data.DB.pas Data.DB.hpp |
Data.DB | TDataSet |
Description
Indicates whether the first record in the dataset is active.
Test Bof (beginning of file) to determine if the dataset is positioned at the first record. If Bof is true, the active record is unequivocally the first row in the dataset. Bof is true when an application.
Opens a dataset.
Calls a dataset's First method.
Call a dataset's Prior method, and the method fails because the first row is already active.
Calls SetRange on an empty range or dataset.
Bof is false in all other cases.
See Also