Class: IO
Description
This property specifies the element name that is used by IO.open() to derive the charsetName that is used for character translation. It is combined with the value of the charsetElemType property, the subroutine name, and the instance variable name. See IO.open() for details. The value of this property is interpreted only by IO.open().
Syntax
type String IOObject.charsetElemName = "MyReport"
Returns
A String
When Became Available
Profile V7.0
Example
type IO IOD = Class.new("IO")
type String EMPTY = IOD.charsetName // empty string
set IOD.charsetElemName = "MyReport"
set IOD.charsetElemType = "Report"
set IOD.directory = "/home/"
set IOD.file = "output.txt"
do IOD.open()
type String CHARSET = IOD.charsetName // may have been set by open()