Item

IMathMatrix indexer

Eléments de matrice

public IMathElement this[int row, int column] { get; set; }
ParamètreLa description
rowL’index de base zéro de la ligne pour obtenir l’élément
columnL’index de base zéro de la colonne pour obtenir l’élément

Exemples

Exemple :

[C#]
IMathMatrix matrix = new MathMatrix(2, 3);
matrix[0, 0] = new MathematicalText("item.1.1");

Voir également