Item

MathBlock indexer

Obtiene o establece IMathElement en el índice especificado.

public IMathElement this[int index] { get; set; }
ParámetroDescripción
indexEl índice de base cero del elemento.

Valor_devuelto

El elemento matemático.

Ejemplos

Ejemplo:

[C#]
MathBlock mathBlock = new MathBlock(new MathematicalText("x"));
IMathElement firstElem = mathBlock[0];

Ver también