You are here: Symbol Reference > MtxExprInt Namespace > Classes > MatrixInt Record > public > MatrixInt.DisableSelect Method
MtxVec VCL
ContentsIndex
Example
var a: MatrixInt; b: VectorInt; begin a.SetIt(3,3,[1,2,3,4,5,6,7,8,9]); a.Select(0,2); //a = [1,2] a.DisableSelect; a.Select(2,2); //exception raised here b.Select(a,2,2); //but this will work a.SelectAll; //b is not changed, it still points to [4,5] end;
Copyright (c) 1999-2025 by Dew Research. All rights reserved.