History  | 
CharSet (files) 
Purpose 
Sets or retrieves a character set string associated with a file. 
This is used to pass data to files that require it. This data isn't stored or generated based on the file data. 
Syntax 
File.CharSet [= CharacterSet] 
Example 
Dim MyFile as File 
... 
MyFile.OpenFile("Testfile",fcRead) 
MyFile.CharSet="UTF-8" 
Debug MyFile.CharSet 
MyFile.CloseFile 
 | ||