The textReport.setNativeOutput() function specifies whether the report should be output in UNICODE (value of NO) or in a native character set (default value of YES).
Use the textReport.isNativeOutput() function to retrieve this value.
textReport.setNativeOutput(native BOOLEAN in)
The following example ensures that the report uses the native character set:
myReport TextReport = new TextReport();
...
if( !(myReport.isNativeOutput()))
myReport.setNativeOutput(YES);
end