Count

Propiedad IMathElementCollection.Count

Obtiene el número de elementos que realmente se encuentran en la colección. Solo lectura Int32.

public int Count { get; }

Ejemplos

Ejemplo:

[C#]
IMathElementCollection collection = new MathBlock(new MathematicalText("x"));
int count = collection.Count;

Ver También