CreateTextFile

Creates a text file to read, write, or append.

SYNTAX
CreateTextFile(newLine) 
ARGUMENTS inputFileName

Defines the string for a line break. If the parameter is not specified, CRLF ("\r\n" - $0D $0A) is used as the default line break.

Possible values:

DOS.NewLineLF = LineFeed ("\n" - $0A)

DOS.NewLineCRLF = CarriageReturn/LineFeed ("\r\n" - $0D $0A)

RETURN MonaLisaTextFile object to read, write, or append to a file.