SetSubSuperscriptOnTheLeft

SetSubSuperscriptOnTheLeft(IMathElement, IMathElement)

Crea subíndice y superíndice a la izquierda

public IMathLeftSubSuperscriptElement SetSubSuperscriptOnTheLeft(IMathElement subscript, 
    IMathElement superscript)
ParámetroEscribeDescripción
subscriptIMathElementSubíndice (índice inferior a la izquierda)
superscriptIMathElementSuperíndice (índice superior a la izquierda)

Valor_devuelto

Nuevo elemento matemático de tipoIMathLeftSubSuperscriptElement

Ejemplos

Ejemplo:

[C#]
IMathElement baseElement = new MathematicalText("N");
IMathElement subscript = new MathematicalText("i");
IMathElement superscript = new MathematicalText("j");
IMathLeftSubSuperscriptElement leftSubsuperscript = baseElement.SetSubSuperscriptOnTheLeft(subscript, superscript);

Ver también


SetSubSuperscriptOnTheLeft(string, string)

Crea subíndice y superíndice a la izquierda

public IMathLeftSubSuperscriptElement SetSubSuperscriptOnTheLeft(string subscript, 
    string superscript)
ParámetroEscribeDescripción
subscriptStringSubíndice (índice inferior a la izquierda)
superscriptStringSuperíndice (índice superior a la izquierda)

Valor_devuelto

Nuevo elemento matemático de tipoIMathLeftSubSuperscriptElement

Ejemplos

Ejemplo:

[C#]
IMathElement baseElement = new MathematicalText("N");
IMathLeftSubSuperscriptElement leftSubsuperscript = baseElement.SetSubSuperscriptOnTheLeft("i", "j");

Ver también