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
- FormattedProcessing
(3) - Formatted processing
- LineProcessing
(2) - Line processing
- SimpleProcessing
(1) - Simple text processing
- UndefinedProcessing
(0) - Text processing mode undefined
Enumerator details
-
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 -
LineProcessing - Line processing
In case of line processing data is read or written sequentially line by line.
Code: 2
to list -
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