Item

IMathElementCollection indexer

Obtiene el elemento en el índice especificado. Solo lectura IMathElement.

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

Ejemplos

Ejemplo:

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

Véase También