Go to documentation repository
The Base64Decode method is used for decoding the lines that are coded by Base64 scheme.
Method call syntax
function Base64Decode(data_in: String, WideChar: Boolean)
Method arguments:
Usage examples
Decode the line that is set in Base64 by starting macro №1. Output the decoding result into the debug windows of the Editor-Debugger utility. (Result is « Axxon PSIM JAVA SCRIPT» line).
if (Event.SourceType == "MACRO" && Event.SourceId == "1" && Event.Action == "RUN") { var str = Base64Decode("SW50ZWxsZWN0IEpTY3JpcHQ= ", 0); DebugLogString(str); }