int FileWriteArray(int handle, object array[ ], int start, int count)
The function writes the array to a binary file. Arrays of int, bool, datetime and color types will be written elementwise, as 4-bytes integers. Arrays of double type will be written elementwise, as 8-bytes floating point numbers. Arrays of string type will be written by strings, the line end character “\r\n” to be added at each string automatically.
この関数は、配列をバイナリ ファイルに書き込みます。int、bool、datetime、color型の配列は 4バイトの整数として、各要素ごとに書き込まれます。double型の配列は 8バイトの浮動小数点数値として、各要素ごとに書き込まれます。string型の配列は 行終了文字 “\r\n” を自動的に各文字に追記した文字列として書き込まれます。
Returns the number of written elements or a negative value if an error occurs. To get the detailed error information, one has to call the GetLastError() function.
エラーが発生した場合は、書き込んだ要素数か、負の値を返します。詳細なエラー情報を取得するには、GetLastError() 関数を呼び出します。
Parameters:
パラメータ:
1 2 3 4 5 6 7 8 9 10 11 | <b>handle</b> - File handle returned by the FileOpen() function. FileOpen() 関数によって返されたファイル ハンドル。 <b>array[]</b> - Array to write. 書き込む配列 <b>start</b> - Starting index in the array (the first written element number). 配列の開始インデックス。(最初に書き込む要素番号) <b>count</b> - Count of elements to be written. 書き込まれる要素の総数。 |
Sample:
サンプル:
1 2 3 4 5 6 7 8 9 10 11 12 | int handle; double BarOpenValues[10]; // copy first ten bars to the array for(int i=0;i<10; i++) BarOpenValues[i]=Open[i]; // writing array to the file handle=FileOpen("mydata.dat", FILE_BIN|FILE_WRITE); if(handle>0) { FileWriteArray(handle, BarOpenValues, 3, 7); // writing last 7 elements FileClose(handle); } |