You are here: Symbol Reference > Dew Namespace > Dew.Math Namespace > Dew.Math.Controls Namespace > Classes > MtxGridView Class
Dew Math for .NET
ContentsIndexHome
Example

Display matrix, do not allow user to change values.

using Dew.Math; using Dew.Math.Controls; namespace Dew.Examples { private void Example(MtxGridView mgv) { Matrix m = new Matrix(10,3); m.RandGauss(); mgv.ReadOnly = true; mgv.ShowObjectInfo = true; mgv.DataObject = m; } }
Copyright (c) 1999-2024 by Dew Research. All rights reserved.