Add tasks for all the new languages
This commit is contained in:
parent
9dc3c2bb62
commit
bba7bfd280
13208 changed files with 134745 additions and 0 deletions
|
|
@ -0,0 +1,25 @@
|
|||
Built-In Function
|
||||
Syntax
|
||||
|
||||
IsNumber(Value)
|
||||
Description
|
||||
|
||||
Use the IsNumber function to determine if Value contains a valid numeric value. Numeric characters include sign indicators and comma and period decimal points.
|
||||
To determine if a value is a number and if it's in the user's local format, use the IsUserNumber function.
|
||||
|
||||
Parameters
|
||||
|
||||
Value
|
||||
Specify a string you want to search to determine if it is a valid number.
|
||||
|
||||
Returns
|
||||
A Boolean value: True if Value contains a valid numeric value, False otherwise.
|
||||
|
||||
Example
|
||||
|
||||
&Value = Get Field().Value;
|
||||
If IsNumber(&Value) Then
|
||||
/* do numeric processing */
|
||||
Else
|
||||
/* do non-numeric processing */
|
||||
End-if;
|
||||
Loading…
Add table
Add a link
Reference in a new issue