TextWriter

Description

The TextWriter class implements an object that enables the user to write data into text files.

Constructors

  Constructor name Brief description
Create

The Create constructor creates an object that enables the user to write data into a text file.

Class object properties inherited from ITextWriter

  Property name Brief description
Encoding

The Encoding property determines a text encoding for writing into a file.
WordDelimeter

The WordDelimiters property determines a delimiter between words while writing them into a text file.

Class object methods inherited from ITextWriter

  Method name Brief description
Flush

The Flush method flushes all buffers of the current recording program and calls immediate saving of all buffered data to a hard drive.
WriteBoolean

The WriteBoolean method writes a logical value into a text file.
WriteChar

The WriteChar method writes characters into a text file.
WriteDateTime

The WriteDateTime method writes variables of the DateTime type into a text file.
WriteDouble

The WriteDouble method writes a real number into a text file.
WriteInteger

The WriteInteger method writes an integer number into a text file.
WriteLnBoolean

The WriteLnBoolean method writes a logical value into a text file with further cursor move to the next string.
WriteLnChar

The WriteLnChar method writes characters into a text file with further cursor move to the next string.
WriteLnDateTime

The WriteLnDateTime method writes variables of the DateTime type into a text file with further cursor move to the next string.
WriteLnDouble

The WriteLnDouble method writes a real number into a text file with further cursor move to the next string.
WriteLnInteger

The WriteLnInteger method writes an integer number into a text file with further cursor move to the next string.
WriteLnString

The WriteLnString method writes a character string into a text file with further cursor move to the next string.
WriteString

The WriteString method writes a character string into a text file.
WriteWord

The WriteWord method writes character words into a text file.

See also:

IO Assembly Classes