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