|
Write text to a file.
syntax
Write(
fileHandle,
text1
[,text2]
[,text3] ... [,textX]
)
Parameters
fileHandle
|
|
Type:
|
Number
|
|
The file handle.
|
text
|
|
Type:
|
Character Array
|
|
The characters to write. If you specify an array, each text will be separated by the separator character specified when Open is executed.
|
textX
|
|
Type:
|
Character Array
|
|
You can specify any number of additional characters to be written as arguments following Text1. Each text will be separated by the separator character specified when Open is used.
|
Return Value
|
|
Type:
|
Boolean
|
|
FALSE - Failure. TRUE - Success.
|
Writes text to a file. Note that passing an incorrect file handle will result in an application error.
|
reference
Open
Close
CloseAll
Write
Flush
|