Documentation for Axxon PSIM 1.0.0-1.0.1.

Previous page Next page


You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

The Int_var method sets and returns values of global variables of integer type.

Attention!

The Int_var method uses the same storage as the Itv_var method, but modify the type of variable to the integer type.

Method call syntax:

function Int_var (globalvar : String) : int

Method arguments:

  1. globalvar – required argument. The name of the global variable. It takes the following values: type – String, satisfying the rules for the names of the string parameters  in the Windows registry.

Note.

Global variables are stored in the system registry to maintain their values after Windows restart. All global variables are stored in the registry branch HKEY_USERS\S-1-5-21-…\Software\ITVScript\ITVSCRIPT and HKEY_CURRENT_USER\Software\ITVScript\ ITVSCRIPT. To access a global variable directly from the registry, search the registry for it by the same name.

Usage examples. To check the method operation in the following test example the value 1 sets to the "2" global variable and then increases per 1 and displays on the script debug window. 

if(Event.Action =="RUN")
{
  Int_var(2) = 1;
  Int_var("2")++;
  DebugLogString(Int_var("2").toString());
}
  • No labels