Icon BoolToStr

Unit: WebCore

Available In: Client and Server Applications

function BoolToStr(Value: Boolean): String

The BoolToStr function returns 'True' if the input parameter is true, and 'False' if the input parameter is False. The return value is a String value.

Examples

X := BoolToStr(True);  // X is 'True'
Image