Basic.Eoln$ (property)

Syntax

Basic.Eoln$

Description

Returns a String containing the end-of-line character sequence appropriate to the current platform.

Comments

This string will be either a carriage return, a carriage return/line feed, or a line feed.

Example

This example writes two lines of text in a message box.

Sub Main()

  MsgBox "This is the first line of text." & Basic.Eoln$ & "This is the second line of text."
End Sub

See Also

 Basic.PathSeparator$ (property).

More information

B