Integer.IsInteger

Syntax

IsInteger(Value: String): Boolean;

Parameters

Value. String value, which must be checked.

Description

The IsInteger method checks if the specified string value is an integer number.

Comments

The method returns True if the specified value can be converted into integer type, and False if converting is impossible. To convert, use the Parse or TryParse method.

See also:

Integer