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