[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Copy part of the string to an array of characters
Source position: syshelph.inc line 82
public procedure TStringHelper.CopyTo( |
SourceIndex: Integer; |
var destination: array of Char; |
DestinationIndex: Integer; |
ACount: Integer |
); |
CopyTo copies at most ACount characters from the source string (Self) to the array Destination, starting at (zero based) index SourceIndex. The characters are copied to the array starting at position DestinationIndex (zero based).
|
Copy part of a string. |