Property | Type | Description | |
---|---|---|---|
globalVrb | List |
||
sInput | string | ||
sOutput | string | ||
sReturn | string |
Method | Description | |
---|---|---|
Func ( String sCode ) : System |
Constructor for Func class. (Without init params)
|
|
Func ( String sCode, String sParam ) : System |
Constructor for Func class.
|
|
Run ( |
This method Runs the function.
|
|
getGlVar ( string sName ) : string |
Gets the value of global var from the list with the name equal to sName
|
|
getVar ( string sName ) : string |
Gets the value of var from the list with the name equal to sName
|
|
setGlVar ( |
Sets the value of param to global var from the list, which name is equal to param's name. If such var in list doesn't exists - it is added.
|
|
setVar ( |
Sets the value of param to var from the list, which name is equal to param's name. If such var in list doesn't exists - it is added.
|
Method | Description | |
---|---|---|
addConsts ( ) : void |
This method inits Vars list and adds consts to it.
|
|
addGlVar ( |
Makes a copy of param global var and adds it to the List.
|
|
addVar ( |
Makes a copy of param var and adds it to the List.
|
|
varExists ( string sName ) : int |
Checks if a var with sName already exists.
|
|
varGlExists ( string sName ) : int |
Checks if a global var with sName already exists.
|
public Func ( String sCode ) : System | ||
sCode | String | Source of the function. |
return | System |
public Func ( String sCode, String sParam ) : System | ||
sCode | String | Source of the function. |
sParam | String | Init params for this function. |
return | System |
public Run ( |
||
frmain1 | Link to the main form. | |
return | string |
public getGlVar ( string sName ) : string | ||
sName | string | The name of the param to get. |
return | string |
public getVar ( string sName ) : string | ||
sName | string | The name of the param to get. |
return | string |
public setGlVar ( |
||
param | Base-type variable | |
return | void |
public setVar ( |
||
param | Base-type variable | |
return | void |