You are here: Symbol Reference > MtxExprInt Namespace > Classes > VectorInt Record > public > Copy Method > VectorInt.Copy Method (TMtxVecInt)
MtxVec VCL
ContentsIndex
Example
uses MtxVecInt; procedure Example; var a,b: TMtxVecInt; begin a := TMtxVecInt.Create(); b := TMtxVecInt.Create(); try a.SetIt([1,2,3,4]); // a = [1,2,3,4] b.Copy(a); // b = [1,2,3,4] finally a.Free; b.Free; end; end;
Copyright (c) 1999-2025 by Dew Research. All rights reserved.