SetSubSuperscriptOnTheRight
Contenido
[
Ocultar
]SetSubSuperscriptOnTheRight(IMathElement, IMathElement)
Crea subíndice y superíndice a la derecha
public IMathRightSubSuperscriptElement SetSubSuperscriptOnTheRight(IMathElement subscript,
IMathElement superscript)
Parámetro | Escribe | Descripción |
---|---|---|
subscript | IMathElement | Subíndice (índice inferior a la derecha) |
superscript | IMathElement | Superí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
- interface IMathRightSubSuperscriptElement
- interface IMathElement
- class MathElementBase
- espacio de nombres Aspose.Slides.MathText
- asamblea Aspose.Slides
SetSubSuperscriptOnTheRight(string, string)
Crea subíndice y superíndice a la derecha
public IMathRightSubSuperscriptElement SetSubSuperscriptOnTheRight(string subscript,
string superscript)
Parámetro | Escribe | Descripción |
---|---|---|
subscript | String | Subíndice (índice inferior a la derecha) |
superscript | String | Superí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
- interface IMathRightSubSuperscriptElement
- class MathElementBase
- espacio de nombres Aspose.Slides.MathText
- asamblea Aspose.Slides