Boolean2TF Function
Converts a Boolean Value into the corresponding Character.

Unit
QESBPCSConvert

Declaration
Function Boolean2TF(const B: Boolean): Char;

Description
Returns for True = 'T' and False = 'F'.

Parameters
Boolean Value to convert.

Category
Boolean Conversion Routines

Implementation

function Boolean2TF (const B: Boolean): Char;
begin
     Result := iff (B, 'T', 'F');
End;


HTML generated by Time2HELP
http://www.time2help.com