SetSuperscript
Contenido
[
Ocultar
]SetSuperscript(IMathElement)
Crea superíndices
public IMathSuperscriptElement SetSuperscript(IMathElement superscript)
Parámetro | Tipo | Descripción |
---|---|---|
superscript | IMathElement | Superíndice (índice superior a la derecha) |
Valor de Retorno
Nuevo elemento matemático de tipo IMathSuperscriptElement
Ejemplos
Ejemplo:
[C#]
IMathElement element = new MathematicalText("N");
IMathElement index = new MathematicalText("4");
IMathSuperscriptElement superscript = element.SetSuperscript(index);
Véase También
- interfaz IMathSuperscriptElement
- interfaz IMathElement
- espacio de nombres Aspose.Slides.MathText
- ensamblaje Aspose.Slides
SetSuperscript(string)
Crea superíndices
public IMathSuperscriptElement SetSuperscript(string superscript)
Parámetro | Tipo | Descripción |
---|---|---|
superscript | String | Superíndice (índice superior a la derecha) |
Valor de Retorno
Nuevo elemento matemático de tipo IMathSuperscriptElement
Ejemplos
Ejemplo:
[C#]
IMathElement element = new MathematicalText("N");
IMathSuperscriptElement superscript = element.SetSuperscript("4");
Véase También
- interfaz IMathSuperscriptElement
- interfaz IMathElement
- espacio de nombres Aspose.Slides.MathText
- ensamblaje Aspose.Slides