Item

Indexeur MathMatrix

Élément de matrice

public IMathElement this[int row, int column] { get; set; }
ParamètreDescription
rowL’index basé sur zéro de la ligne pour obtenir l’élément
columnL’index basé sur 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 Aussi