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