Declaration
procedure append(src: TIEVisionWString); overload; safecall;
procedure append(src: PWideChar); overload; safecall;
Description
Append a string or widestring.
Parameter | Description |
src | String to append |
string1.append(string2); // equiv. to string1 := string1 + string2;
string1.append('hello'); // equiv. to string1 := string1 + 'hello';