Count

MathBlock.Count property

Gets the number of child math elements actually contained in the collection. Read-only Int32.

public int Count { get; }

Examples

Example:

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

See Also