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("𝑛→∞"));

另见