Link Search Menu Expand Document

SSpread.LoadTabFile Method

Explanation Imports tab-delimiter data files into the spreadsheet currently being editing.

Use the LoadTextFile method to load a file with any delimiter.
Call format LoadTabFile(URL or Reader)
Return value None
Arguments URL or Reader Tab-delimited file URL or Reader Object

The file will be cached on local computer for faster loading from the next time onwards if URL is specified. The latest files can be acquired from the server by specifying an HttpResponse object.
Exception EXT-24 No valid Reader object specified
EXT-28 An error occurred in the LoadTabFile method
Example of use
    var session = findHttpSession("http://example.com");
    var res = session.Get("tabfile.txt");
    LoadTextFile(res);
    
Related item LoadFromFile, LoadTextFile, SaveTabFile, SaveTabFileU methods
HttpResponse class