Icon StrToInt

Unit: Internal

Available In: Client and Server Applications

function StrToInt(const Value: String): Integer

The StrToInt function converts the formatted string input parameter into its native value. The return value is an Integer value.

Examples

X := StrToInt('-102');  // X is -102
Image