SetSubSuperscriptOnTheRight

SetSubSuperscriptOnTheRight(IMathElement, IMathElement)

Crea subíndice y superíndice a la derecha

public IMathRightSubSuperscriptElement SetSubSuperscriptOnTheRight(IMathElement subscript, 
    IMathElement superscript)
ParámetroEscribeDescripción
subscriptIMathElementSubíndice (índice inferior a la derecha)
superscriptIMathElementSuperíndice (índice superior a la derecha)

Valor_devuelto

Nuevo elemento matemático de tipoIMathRightSubSuperscriptElement

Ejemplos

Ejemplo:

[C#]
IMathElement baseElement = new MathematicalText("N");
IMathElement subscript = new MathematicalText("i");
IMathElement superscript = new MathematicalText("j");
IMathRightSubSuperscriptElement subsuperscript = baseElement.SetSubSuperscriptOnTheRight(subscript, superscript);

Ver también


SetSubSuperscriptOnTheRight(string, string)

Crea subíndice y superíndice a la derecha

public IMathRightSubSuperscriptElement SetSubSuperscriptOnTheRight(string subscript, 
    string superscript)
ParámetroEscribeDescripción
subscriptStringSubíndice (índice inferior a la derecha)
superscriptStringSuperíndice (índice superior a la derecha)

Valor_devuelto

Nuevo elemento matemático de tipoIMathRightSubSuperscriptElement

Ejemplos

Ejemplo:

[C#]
IMathElement baseElement = new MathematicalText("N");
IMathRightSubSuperscriptElement subsuperscript = baseElement.SetSubSuperscriptOnTheRight("i", "j");

Ver también