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, bool, bool)
Dew Math for .NET
ContentsIndexHome
PreviousUpNext
MtxVecEdit.ViewValues Method (TMtxVec, string, bool, bool, bool)

Bring up the matrix or vector values editor.

Syntax
C#
Visual Basic
public static void ViewValues(TMtxVec obj, string FormCaption, bool Modal, bool StayOnTop, bool Editable);
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. 
bool StayOnTop 
Controls editor form TopMost property. 
bool Editable 
If true, matrix or vector properties and values can be edited. 

View/edit matrix values as modal form, also setup form Text.

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