Item

IMathElementCollection indexer

Obtiene el elemento en el índice especificado. Solo lecturaIMathElement .

public IMathElement this[int index] { get; }
ParámetroDescripción
indexEl índice de base cero del elemento que se va a obtener

Ejemplos

Ejemplo:

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

Ver también