TIEVisionVectorString.setString
Declaration
procedure setString(pos: int32_t; value: TIEVisionString); overload; safecall;
procedure setString(pos: int32_t; value: PAnsiChar); overload; safecall;
Description
Replace or set an item with the specified string object or ANSI string.
Parameter | Description |
pos | Item index to set |
value | String object or ANSI string |
i := vector1.push_back('before');
vector1.setString(i, 'replaced');