MathLimit

MathLimit(IMathElement, IMathElement, bool)

初始化 MathLimit 类的新实例。

public MathLimit(IMathElement baseArg, IMathElement limit, bool upperLimit)

例子

示例:

[C#]
MathLimit limitElement = new MathLimit(new MathematicalText("lim"), new MathematicalText("𝑛→∞"), false);

也可以看看


MathLimit(IMathElement, IMathElement)

用下限初始化 MathLimit 类的新实例

public MathLimit(IMathElement baseArg, IMathElement limit)

例子

示例

[C#]
MathLimit limitElement = new MathLimit(new MathematicalText("lim"), new MathematicalText("𝑛→∞"));

也可以看看