Base64Encode
Encodes the specified string by Base64 method
Syntax
function Base64Encode(aText: string): string;
Parameters
- aText
- type: string
- functions: source string
Returned value
- type: string
- functions: encoded string
Notes
Examples
var encoded:=Base64Encode('base64'); //encoded = 'YmFzZTY0'