textReport.setNativeOutput() 関数は、レポートを UNICODE (値 NO) または固有文字セット (デフォルト値 YES) のどちらで出力するかを指定します。
この値を取得するには、textReport.isNativeOutput() 関数を使用します。
textReport.setNativeOutput(native BOOLEAN in)
次の例では、レポートが固有文字セットを使用することが確認されます。
myReport TextReport = new TextReport();
...
if( !(myReport.isNativeOutput()))
myReport.setNativeOutput(YES);
end