FileInterface.PutLine(String) Method

Top 

Description

Writes the contents of stringArgument to the file stream followed by a line feed (\n) and returns the length of the stringArgument. If the stringArgument specified is empty, this method will return a length of zero.

 

Timing Precision Mode

This page describes functionality in nanosecond timing precision mode.

Click here to see the documentation for this object in millisecond timing precision mode.

 

Method Signature

FileInterface.PutLine(

String stringArgument)

 

 

Arguments

stringArgument


Description:

String containing the characters to put to the file stream, which will be followed by a line feed (\n).

 

 

 

Return Value

Type:

number

 

 

Returns the number of characters written. This will be 0 if an input String is not specified.

 

Syntax

myVariable1 = myFileInterface1.PutLine(myString1);

 

 

See also

FileInterface Object

FileInterface.PutLine

Interfacing with Files Guide

Parsing Arbitrary String Data