SetLowerLimit

SetLowerLimit(IMathElement)

Toma límite inferior

public IMathLimit SetLowerLimit(IMathElement limit)
ParámetroEscribeDescripción
limitIMathElementlímite

Valor_devuelto

Nueva instancia de tipoIMathLimit

Ejemplos

Ejemplo:

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

Ver también


SetLowerLimit(string)

Toma límite inferior

public IMathLimit SetLowerLimit(string limit)
ParámetroEscribeDescripción
limitStringlímite

Valor_devuelto

Nueva instancia de tipoIMathLimit

Ejemplos

Ejemplo:

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

Ver también