Versions Compared

Key

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

The Base64EncodeFile method encodes a file to Base64is used to encode files using the Base64 scheme. The method returns a string.

See also The Base64Decode method and The SaveToFile method.

Method call syntaxSyntax for method invocation:

Code Block
function Base64EncodeFile (data_in: String): String

Method arguments:

  1. data_in – is a required argument. Sets a It specifies the path to the file that you want to be encodedencode.

Example. At running Macro On macro 1, encode the 1.bmp file to Base64 and save write it to the 2.bmp file.

Code Block
if (Event.SourceType == "MACRO" && Event.SourceId == "1" && Event.Action == "RUN")
{
	var s = Base64EncodeFile("d:\\1.bmp");
	SaveToFile("d:\\2.bmp",s, true);
}

...