FileIOType Class Reference

The IO JavaScript global object. Enumerates the different types of stream behaviour the ImageFile can take. More...

Public Types

enum  IOTypes {
  RAW = QIODevice::Unbuffered, READ_ONLY = QIODevice::ReadOnly, WRITE_ONLY = QIODevice::WriteOnly, READ_WRITE = QIODevice::ReadWrite,
  APPEND = QIODevice::Append, TRUNCATE = QIODevice::Truncate, TRANSLATE = QIODevice::Text
}
 < IO types More...
 

Detailed Description

The IO JavaScript global object. Enumerates the different types of stream behaviour the ImageFile can take.

The FileIOType class enumerates the different types of stream behaviour the ImageFile can take. An instance of this class is directly accessible through the scripting environment.

Member Enumeration Documentation

◆ IOTypes

< IO types

Enumerator
RAW 

Raw file I/O.

READ_ONLY 

Read only stream.

WRITE_ONLY 

Write only stream.

READ_WRITE 

Read and write stream.

APPEND 

Append to existing stream.

TRUNCATE 

Truncate stream.

TRANSLATE 

Translate stream.