Icon IsBool

Unit: WebCore

Available In: Client and Server Applications

function IsBool(const Value: String): Boolean

The IsBool function returns True if the input parameter is a valid boolean string:

'True'
'False'

Examples

X := IsBool('Hello');  // X is False
Image