|
Function name
|
Parameters
|
Return
|
Description
|
|
Compairing functions
|
|
Str_Equal
|
Text, Text
|
Boolean
|
Returns True if the firs parameter contains exactly the same as the second one,
otherwise it returns False.
|
|
Val_Eaquel
|
Value, Value
|
Boolean
|
Returns True if the value of the first parameter is the same as the value of
the secon one, else it returns False. Note that if they don't include any number, they would be
treated as if they contains a cero!
|
|
LongerThan
|
Text, Text
|
Boolean
|
Returns True if the length of the first parameter is bigger than the lengt of the
second one, else it returns False.
|
|
BiggerThan
|
Value, Value
|
Boolean
|
Returns True if the value of the first parameter is bigger than the value
uf the second one, else it returns False.
|
|
Logic functions
|
|
Not
|
Boolean
|
Boolean
|
Returns the opposit boolean value as the parameter has, i.e, if the parameter
is set to True, it returns False, and if it is set to False, it returns True.
|
|
And
|
Boolean, Boolean
|
Boolean
|
Returns True if the both parameters contains True, else it returns False.
|
|
Or
|
Boolean, Boolean
|
Boolean
|
If the first parameter is set to True, or the second set to True, it returns True,
else it returns False. Note: If both of them is set to True, it returns False!
|
|
Mathematic functions
|
|
Add
|
Value, Value
|
Value
|
Returns the value of the first parameter, plus the value of the second one.
|
|
Sub
|
Value, Value
|
Value
|
Returns the value of the first parameter, minus the value of the second one.
|
|
Mult
|
Value, Value
|
Value
|
Returns the two parameters, multiplied by each other.
|
|
Div
|
Value, Value
|
Value
|
Returns the value of the first parameter divided by the value of the second parameter.
|
|
Exp
|
Value, Value
|
Value
|
Returns the value of parameter number one ^ parameter number two.
|
|
Root
|
Value, Value
|
Value
|
Returns the parameter number one -root of the value of parameter number two.
|
|
Int
|
Value
|
Value
|
Returns the value of the parameter, but without it's decimals.
Note: It does not return the rounded value of the parameter, just the value
without any decimals.
|
|
String functions
|
|
ConCat
|
Text, Text
|
Text
|
Returns the contents of the first parameter and the contents of the second one,
in order after each other, i.e. it concatenate the two strings to one.
|
|
Mid
|
Text, Value, Value
|
Text
|
Returns the text in the first parameter, after the character with the order number
which is specified in the last parameter and as many characters as specified in the
second parameter.
|
|
Length
|
Text
|
Value
|
Simply returns the length of the parameter (The number of characters the
parameter contains).
|
|
Link functions
|
|
CreateLink
|
Value, Text, Value, Text
|
|
Create a link between two variables which ID-number should be specified in
the first and 3:d parameter. The name of the first variable (Which ID is
stored in the first parameter) will be the contents of the second parameter, and
the name of the second variable, would be the contents of the 4th parameter.
Note: This function does not return anything usefoul.
|
|
RemoveLink
|
Value, Text
|
|
Remove the link with the name specified in the second parameter from the variable
which ID-number is stored in the first parameter.
|
|
Event handler functions
|
|
Mk_eHandler
|
Code, Handle, Handle, Handle, Value
|
Handle
|
Creates a event handler with the pattern stored in parameter number 2 to 5 and
the code which should be executed when the event apear stored in the first parameter.
If the createation succeed, it returns a handle to the event handler (Used when you want
to delete the event handler), and a negative number (Normaly -1) if the createation failed.
|
|
Rm_eHandler
|
Handle
|
|
Remove the event handler with the handle specified in parameter number one.
|