Callin()
Callin()
Type: REGULAR FUNCTION
Purpose: Dynamically assigns a callin (compiled) function to a variable.
Callin() is equivalent to the static syntax:
function Result callin FunctionName
or function Result callin Library @ FunctionName
or function Result callin Library @ FunctionID
A result must be assigned to a global variable to be accessible outside the function where Callin is executed.
Usage: Result = Callin(FunctionName)
or
Result = Callin(Library, FunctionName)
or
Result = Callin(Library, FunctionID)
FunctionName | STRING | Name of the function being located in a library or Gamry Framework™. |
|
Library | LIBRARY | Name of the library in which to look. | |
FunctionID | INDEX |
function ordinal number ID. |
Comments are closed.