SetLowerLimit
SetLowerLimit(IMathElement)
设定下限
public IMathLimit SetLowerLimit(IMathElement limit)
参数 | 类型 | 描述 |
---|---|---|
limit | IMathElement | limit |
返回值
新实例类型 IMathLimit
示例
示例:
[C#]
IMathElement baseElement = new MathematicalText("lim");
IMathElement limitValue = new MathematicalText("𝑛→∞");
var limitElement = baseElement.SetLowerLimit(limitValue);
另见
SetLowerLimit(string)
设定下限
public IMathLimit SetLowerLimit(string limit)
参数 | 类型 | 描述 |
---|---|---|
limit | String | limit |
返回值
新实例类型 IMathLimit
示例
示例:
[C#]
IMathElement baseElement = new MathematicalText("lim");
var limitElement = baseElement.SetLowerLimit("𝑛→∞");