property ExPrint.Decode64Text (Text64 as String) as String
Decodes the giving string, from base64 format ( compressed ).

TypeDescription
Text64 as String A String expression ( the string to be decoded ) that defines the string being encoded using the Encode64Text property.
String A String expression ( the original string ) that indicates the decoded text.
The Decode64Text property returns the original string ( previously encoded using the Encoded64Text property ). The Text64 parameter must indicates the result of the Encode64Text 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 Decode64Text property returns the same result as Decode64TextA property, if running the ANSI version, or Decode64TextW 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.