Documentation for Intellect 4.11.0-4.11.3. Documentation for other versions of Intellect is available too.

Previous page Next page


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

Compare with Current View Page History

Version 1 Next »

The AddIniAny method is used to write, change and read integer variable from the ini-file. Unlike the AddIni method, in AddIniAny method you can specify the section of the file that contains the integer variable. The method returns the value of the variable after its changing.

Method call syntax:

function AddIniAny(varName: String, varValue: int, path: String, section: String): int
  1. varName – required argument. Sets the name of variable in the file.
  2. varValue – required argument. Sets the value of variable or value which should be added to the existing value of variable:
    1. The varValue value will be assigned to the variable if there is a variable with the varName name and string value in the file.
    2. If there is no variable with the varName name in the file then such variable will be created and the varValue value will be assigned to it.
    3. If there is a variable with the varName name in the file and it has integer value or its value is indicated to the integer type, then value will be indicated and the varValue value will be added to it.
  3. path – required argument. Sets the full path to the ini-file in which variable is to be stored. Storage of variables can be placed on the network resource. Enter the network path for it.
  4. section — required argument. Specifies the name of the section of the ini-file where the variable is stored.

Example. There is no "MyVar" variable in the "config" section of the "C:\\test.ini" file. Write such variable with the -1 value to the file, then add 1 to it and display the result value on the script debug window.

var result = AddIniAny("MyVar", -1, "C:\\test.ini", "config");
 
result = AddIniAny("MyVar", 1, "C:\\test.ini", "config");
 
DebugLogString(result);


  • No labels