Count

IMathBlockCollection.Count-Eigenschaft

Gibt die Anzahl der tatsächlich in der Sammlung enthaltenen Elemente zurück. Nur-Lese Int32.

public int Count { get; }

Beispiele

Beispiel:

[C#]
IMathBlockCollection blockCollection = new MathParagraph();
blockCollection.Add(new MathBlock(new MathematicalText("block1")));
blockCollection.Add(new MathBlock(new MathematicalText("block2")));
int blocksCount = blockCollection.Count;

Siehe auch