hwFile - create an object which refers to a HoverWare file
| FileName | 0S | The name of the file to be loaded by this object |
None
The hwFile class is a convenient way in which to refer to another HoverWare object file. The FileName is a string which names the file to be read and displayed when the hwFile object's draw routine is called.
/* Parse and display "foo.hw" */
hwObject
file;
file = hwFile->create( hwFile );
file->modify( file, hwStrFileName, HW_TYPE_STRING, "foo.hw" );
file->draw( file );
file->destroy( file );
# Indirectly refer to the HoverWare file foo.hw
hwFile file {
FileName = "foo.hw"
}