InsertRowAfter

IMathMatrix.InsertRowAfter method

Insert a new row after the specified one Initially all elements in the new row are null.

public void InsertRowAfter(int rowIndex)
ParameterTypeDescription
rowIndexInt32Index of the row after which to insert a new one

Examples

Example:

[C#]
IMathMatrix matrix = new MathMatrix(2, 3);
matrix.InsertRowAfter(1);

See Also