"For developers", "Server scripts", "Functions description", "Strings", "TStringList", "Properties", "CommaText".
Get the content of the list as one block. Strings are divided by commas.
property TStringList.CommaText: string;
A full text of the list in one string; the elements are divided by commas.
var
SL: TStringList;
i: integer;
begin
SL := TStringList.Create;
for i := 1 to 10 do
SL.Append(IntToStr(i));
mLogScript(SL.CommaText, '');
SL.Free;
end.
[17:30:55] (Log "CommaTextProperty"): 1,2,3,4,5,6,7,8,9,10
[17:30:55] (Run "CommaTextProperty"): Script operation time: 5 ms
[17:30:55] (Run "CommaTextProperty"): Script done successfully.