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 Current »

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

Method call syntax:

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

Method argument:

  1. varName – required argument. Sets name  of variable for saving in the file.

  2. varValue – required argument. Sets value of t variable.

  3. path – required argument. Sets full path to the ini-file in which variable is to be stored. Storage of variables can be replaced on the network resource. Enter the network path in the argument for it.

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

WriteIni("MyVar", "Hello world", "\\\\fs\\temp\\test.ini");

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

DebugLogString(result);
  • No labels