void OnReadFileLinesResult(inFilePath, inSuccess, inFileLines)
Description
This callback function is called when reading lines from a text file outside STG
Parameters
The following is a list of parameters the functions receives
Parameter | Type | Description |
---|---|---|
inFileName | string | the path of the file on the device |
inSuccess | bool | True/False if the writing was successful |
inFileLines | string[] | the text in the lines to read from |
Return Type
void
Example
function OnReadFileLinesResult(inFileName, inSuccess, inFileLines){
if (inSuccess=false)
{
Prompt("Reading Lines was not successful");
}
}
Comments
Please sign in to leave a comment.