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