Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The WriteIni method is used for writing to write the string variable to the ini - file.

Method call syntaxSyntax for method invocation:

Code Block
function WriteIni(varName: String, varValue: String, path: String)

Method argument:

  1. varName is a required argument.  Sets name  of It specifies the name of the variable for saving storing in the file.

  2. varValue is a required argument.   Sets It specifies the value of t the variable.

  3. path is a required argument.    Sets It specifies the full path to the ini - file in which the variable is to must be stored. Storage of variables can be replaced placed on the network resource. Enter To do this, enter the network path in the argument for it.

Example. Write the MyVar variable to the \\fsfileserver\temp\test.ini file and specify set the «Helloworld"Hello world!" value to it. Then read the written value and display it on in the script debug window.

Code Block
WriteIni("MyVar", "Hello world", "\\\\fsfileserver\\temp\\test.ini");

var result = ReadIni("MyVar","\\\\fsfileserver\\temp\\test.ini");

DebugLogString(result);