You are here: Symbol Reference > Dew Namespace > Dew.Math Namespace > Dew.Math.Editors Namespace > Classes > MtxVecEdit Class > MtxVecEdit Methods > ViewValues Method > MtxVecEdit.ViewValues Method (TMtxVec, string, bool)
Dew Math for .NET
ContentsIndexHome
PreviousUpNext
MtxVecEdit.ViewValues Method (TMtxVec, string, bool)

View and edit matrix/vector values.

Syntax
C#
Visual Basic
public static void ViewValues(TMtxVec obj, string FormCaption, bool Modal);
Parameters 
Description 
TMtxVec obj 
Matrix or vector to be edited. 
string FormCaption 
Editor form title. 
bool Modal 
If true, editor form is shown as modal form. If false, editor form is shown as modeless form. 

View vector values as modeless form.

using Dew.Math; using Dew.Math.Controls; namespace Dew.Examples { private void Example() { Vector v = new Vector(50,true); v.RandGauss(); MtxVecEdit.ViewValues(v,"Random vector values",true); } }
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!