InsertColumnAfter

IMathMatrix.InsertColumnAfter method

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

public void InsertColumnAfter(int columnIndex)
ParameterTypeDescription
columnIndexInt32Index of the column after which to insert a new one

Examples

Example:

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

See Also