Compare
(function) An optional comparison function to use while sorting the table. The function should be able to compare two values and return true if the two items are already sorted, or false if the items need to be swapped. If no function is specified, the less than operator (<) will be used to sort the items.
Re t u r n s
Nothing.
See also: Related Actions
T ex t F il e
TextFile.ReadToString
OverviewExamples
string TextFile.ReadToString ( string Filename )
De s cr ip t ion
Reads the contents of a text file and returns it as a string.
P arame t er s
Filename
(string) The full path to the text file.
Re t u r n s
(string) A string containing the contents of the text file. If an error occurs, a blank string "" is returned. You can use Application.GetLastError to determine whether this action failed, and why.