Declaration
function at(pos: int32_t): AnsiChar; safecall;
Description
Returns the character at the specified position.
Parameter | Description |
pos | Character index (0=first character) |
c = string1.at(0); // equiv. to "c := string1[0]"
Loading contents...