Midware TMWBuffer.Bof
Main page -> Midware component reference -> TMWBuffer -> Bof
Definition
property Bof: Boolean;
Description
Bof property is TRUE when current position has reached begin of file.
Example
The following code iterate MWBuffer data starting from last record up to first record. <syntaxhighlight lang="delphi">
   MWBuffer1.Last;
   while not MWBuffer1.Bof do begin
       Memo1.Lines.Add(MWBuffer1.RecordToString);
       MWBuffer1.Prior;
   end;
</syntaxhighlight>
