3.7.5.3 Copy

LabTalk Object Type:

Utility

The copy object is used in association with the Copy_(command).

Properties:

Property Access Description
copy.n Read only
numeric

Read the number of elements copied when using the copy command.

Examples:

The following script assumes that a Data1 worksheet exists with at least two columns, Data1_A and Data1_B. The script copies the elements of Data1_A to Data1_B and prints (to the Script window) the number of elements copied.

copy Data1_A Data1_B;
type "$(copy.n)";