company logo

TextProcessingModes - Text processing modes

Text processing modes define different ways for accessing, especially writing, text files.

Text processing modes are, usually, set implicitly when calling the first function requiring a certain text processing mode. One may, however, also set text processing modes explicitly before accessing the file.

Enumarators overview

Enumerator details

  1. UndefinedProcessing - Text processing mode undefined
    Code: 0
    to list
  2. SimpleProcessing - Simple text processing

    Simple text processing is based on reading or writing files sequentially, i.e. data is read or written to the file completely from the beginning to the end.

    Code: 1
    to list
  3. LineProcessing - Line processing

    In case of line processing data is read or written sequentially line by line.

    Code: 2
    to list
  4. FormattedProcessing - Formatted processing

    Formatted text processing support placeholders in text and indenting. Moreover, one may set write position in a line and obtain line numbers.

    Code: 3
    to list