Core Function EvalGet

From Sputnik Wiki
Revision as of 12:37, 14 June 2015 by UberFoX (Talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
EvalGet( <evalObject>, <name> )

Contents

Description

Get a from variable inside an Eval Object.

Parameters

evalObject

An Eval Object created from EvalCreate().

name

The name of the variable you wish to get.

Return Value

Success: Returns the variable.

Failure: Returns null if the variable is null or was not found.

Remarks

This gets the variable in the GLOBAL scope of the Eval Object.

Example

// Create an Eval Object
my $EvalSpk = EvalCreate();
 
// Create and get the variable
if(  EvalSet($EvalSpk, "Test", 1221)   )
{
	println("Test: " . EvalGet($EvalSpk, "Test"));
}
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox