You are here: Symbol Reference > AbstractMtxVecInt Namespace > Classes > TMtxVecInt Class > public > Copy Method > TMtxVecInt.Copy Method (TMtxVecInt)
MtxVec VCL
ContentsIndex
Example
uses MtxVecInt; procedure Example; var a,b: TVecInt; begin a := TVecInt.Create(); b := TVecInt.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.