<< Click to Display Table of Contents >> Navigation: Explain™ Control Language > Library Routines > Define classes and functions > Callin() |
Dynamically assign 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.
REGULAR FUNCTION
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. |