TextWriter: NewLine (let)

NewLine

Sets the line terminator string used by the current TextWriter.



 Public Property Let NewLine(
	  ByVal Value As String ) :

Parameters

Value
[ByVal] String. The line terminator string for the current TextWriter.

Remarks

The default line terminator string is a carriage return followed by a line feed (vbCrLf).

The line terminator string is written to the text stream whenever one of the WriteLine methods is called. In order for text written by the TextWriter to be readable by a TextReader, only "\n" or "\r\n" should be used as terminator strings. If NewLine is set to vbNullString, the default newline character is used instead.

Read/Write.

See Also

Project CorLib Overview

Class TextWriter Overview