Item

MathBlock 索引器

获取或设置指定索引处的 IMathElement。

public IMathElement this[int index] { get; set; }
参数描述
index项目的零基索引

返回值

数学元素。

示例

示例:

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

参见