Icon IsDigit

Unit: WebCore

Available In: Client and Server Applications

function IsDigit(const Value: Char): Boolean

The IsDigit function returns True if the input parameter is a digit character:

0..9

Examples

X := IsDigit('9');  // X is True
Image