Item

Indexador MathBlock

Obtiene o establece IMathElement en el índice especificado.

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

Valor de Retorno

El elemento matemático.

Ejemplos

Ejemplo:

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

Ver También