property ExPrint.Encode64Text (Text as String) as String
Encodes 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 Decode64Text property.
The Encode64Text property compress and encodes the giving string, in BASE64 format. The result of the Encode64Text property can be decoded using the Decode64Text property. For instance, the Filter attribute of the PivotColumns property of the eXPivot component, returns the list of values for filtering in encoding format. You can use the Encode64Text/Decode64Text property to encoded/decode the value of the Filter attribute. The encoded string looks like: "gBUNBpOYggggMIgMRpOggN5mEBlNxjN5kMpkEB0Mp4OgAgI=". Always, the equation Decode64Text( Encode64Text( 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.