diff options
author | Kanabenki <18357657+Kanabenki@users.noreply.github.com> | 2018-11-13 12:53:24 +0100 |
---|---|---|
committer | Kanabenki <18357657+Kanabenki@users.noreply.github.com> | 2018-11-16 11:09:05 +0100 |
commit | 48166a9f3c4ae79f7b8c9de19107b5da079bc175 (patch) | |
tree | 0e2a6aefc3a64142a6660c2510acec430479c369 /doc/classes | |
parent | a2e4eb7533480ee27ceac5998ed2db5d1ee6a2a1 (diff) |
Add store_csv_line method for File
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/File.xml | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/doc/classes/File.xml b/doc/classes/File.xml index 6c900385f7..1745389833 100644 --- a/doc/classes/File.xml +++ b/doc/classes/File.xml @@ -100,7 +100,7 @@ <argument index="0" name="delim" type="String" default="",""> </argument> <description> - Returns the next value of the file in CSV (Comma Separated Values) format. You can pass a different delimiter to use other than the default "," (comma). + Returns the next value of the file in CSV (Comma Separated Values) format. You can pass a different delimiter to use other than the default "," (comma), it should be one character long. </description> </method> <method name="get_double" qualifiers="const"> @@ -327,6 +327,17 @@ Stores the given array of bytes in the file. </description> </method> + <method name="store_csv_line"> + <return type="void"> + </return> + <argument index="0" name="values" type="PoolStringArray" default="",""> + </argument> + <argument index="1" name="delim" type="String" default="",""> + </argument> + <description> + Store the given [PoolStringArray] in the file as a line formatted in the CSV (Comma Separated Values) format. You can pass a different delimiter to use other than the default "," (comma), it should be one character long. + </description> + </method> <method name="store_double"> <return type="void"> </return> |