Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Scroll tablelayout
sortDirectionASC
repeatTableHeadersdefaultstyle
widths13%, 11%, 13%, 63%
style
sortByColumn1
sortEnabledfalse
cellHighlightingtrue

...

Return value

integer

Examples

Code Block
languagetext
int $fileID;

...


string $fileName = "c:/test.txt"; 

...

// Open the file and get the file ID, so we can write to the file

...


// later

...


$fileID = `fileOpen $fileName "w"`;

...


 

...

// Write a string to the file, passing in the file ID

...


// as the first argument. Almost all File I/O commands

...


// take a file ID as the first argument.

...


writeString $fileID "This is some text";

...


 

...

// Be sure to close the file after you are done

...


fileClose $fileID;

Additional information

Related commands

...