SetLowerLimit

SetLowerLimit(IMathElement)

取下限

public IMathLimit SetLowerLimit(IMathElement limit)
范围类型描述
limitIMathElementlimit

返回值

类型的新实例IMathLimit

例子

示例

[C#]
IMathElement baseElement = new MathematicalText("lim");
IMathElement limitValue = new MathematicalText("𝑛→∞");
var limitElement = baseElement.SetLowerLimit(limitValue);

也可以看看


SetLowerLimit(string)

取下限

public IMathLimit SetLowerLimit(string limit)
范围类型描述
limitStringlimit

返回值

类型的新实例IMathLimit

例子

示例

[C#]
IMathElement baseElement = new MathematicalText("lim");
var limitElement = baseElement.SetLowerLimit("𝑛→∞");

也可以看看