property ExPrint.Encode64TextA (Text as String) as String
Encodes (ANSI) and compress the giving string, to base64 format.

TypeDescription
Text as String A String expression ( the string to be encoded ) that defines the string to be encoded
String A String expression ( the encoded string ) that indicates the encoded string, which can be decoded using the Decode64TextA property.
The Encode64TextA property compress and encodes the giving string (as ANSI), in BASE64 format. The result of the Encode64TextA property can be decoded using the Decode64TextA property. The encoded string looks like: "gBUNBpOYggggMIgMRpOggN5mEBlNxjN5kMpkEB0Mp4OgAgI=". Always, the equation Decode64TextA( Encode64TextA( Text ) ) = Text is the true.

The Encode64Text property returns the same result as Encode64TextA property, if running the ANSI version, or Encode64TextW property is running the UNICODE version of the eXPrint component. The Version property of the control specifies whether you are running the ANSI or UNICODE version. If the Version property includes the UNICODE string, it means that you are running the UNICODE version, else it is the ANSI version.