SetSubSuperscriptOnTheRight

SetSubSuperscriptOnTheRight(IMathElement, IMathElement)

Crea subíndices y superíndices a la derecha

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

Valor de Retorno

Nuevo elemento matemático de tipo IMathRightSubSuperscriptElement

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índices y superíndices a la derecha

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

Valor de Retorno

Nuevo elemento matemático de tipo IMathRightSubSuperscriptElement

Ejemplos

Ejemplo:

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

Ver También