ReadBoolean: Boolean;
The ReadBoolean method reads a logical value from a text file.
Sub Main;
Var
File1: IFileInfo;
TextR: ITextReader;
b: Boolean;
Begin
File1:=New FileInfo.Attach("c:\New_folder\1.txt");
If File1.Exists Then
TextR:=File1.OpenTextReader;
b:=TextR.ReadBoolean;
End If;
Dispose File1;
End Sub Main;
After executing the example the "b" variable contains a logical value read from the 1.txt file.
See also: