Login ProductsSalesSupportDownloadsAbout |
Home » Technical Support » Elevate Web Builder Technical Support » Product Manuals » Elevate Web Builder 3 Manual » Function and Procedure Reference » Copy |
function Copy(const Value: String; Index: Integer; Count: Integer): String function Copy(const Value: String; Index: Integer): String function Copy(const Value: String): String function Copy(const Value: array of <Type>; Index: Integer; Count: Integer): array of <Type> function Copy(const Value: array of <Type>; Index: Integer): array of <Type> function Copy(const Value: array of <Type>): array of <Type>
X := Copy('abcdef', 4, 3); // X is 'def' X := Copy('abcdef', 2); // X is 'bcdef' X := Copy([10,20,30,40], 0, 3); // X is [10,20,30]
This web page was last updated on Thursday, November 16, 2023 at 10:39 AM | Privacy PolicySite Map © 2024 Elevate Software, Inc. All Rights Reserved Questions or comments ? E-mail us at info@elevatesoft.com |