Charsetencode()

Returns the binary object encoded as a string using the encoding method given

Usage

STRING = Charsetencode( data, encoding )
Argument Summary
data binary data to encode
encoding encoding format

Calling

Supports named-parameter calling allowing you to use the function like:

Charsetencode(
   data=?, 
   encoding=?
);

Supports passing parameters as a structure using ArgumentCollection:

Charsetencode( ArgumentCollection={
   data : ?, 
   encoding : ?
} );