You are here: Symbol Reference > Dew Namespace > Dew.Math Namespace > Classes > clVector Structure > clVector Methods > clVector.DisableSelect Method
Dew Math for .NET
ContentsIndexHome
PreviousUpNext
clVector.DisableSelect Method

Prevents calls to Select.

Syntax
C#
Visual Basic
public void DisableSelect();

Prevents calls to Select method. This can be usefull guard when an object is already working on a subrange and the user would like to further subrange an already subranged object.

using Dew.Math; using Dew.Math.Units; namespace Dew.Examples() { void Example() { TOpenCLVector a,b; MtxVec.CreateIt(out a, out b); try { a.SetIt(false, new double[] {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] } finally { MtxVec.FreeIt(ref a, ref b); } } }
Copyright (c) 1999-2022 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!