SetSuperscript
Contenido
[
Ocultar
]SetSuperscript(IMathElement)
Crea superíndice
public IMathSuperscriptElement SetSuperscript(IMathElement superscript)
Parámetro | Escribe | Descripción |
---|---|---|
superscript | IMathElement | Superíndice (índice superior a la derecha) |
Valor_devuelto
Nuevo elemento matemático de tipoIMathSuperscriptElement
Ejemplos
Ejemplo:
[C#]
IMathElement element = new MathematicalText("N");
IMathElement index = new MathematicalText("4");
IMathSuperscriptElement superscript = element.SetSuperscript(index);
Ver también
- interface IMathSuperscriptElement
- interface IMathElement
- espacio de nombres Aspose.Slides.MathText
- asamblea Aspose.Slides
SetSuperscript(string)
Crea superíndice
public IMathSuperscriptElement SetSuperscript(string superscript)
Parámetro | Escribe | Descripción |
---|---|---|
superscript | String | Superíndice (índice superior a la derecha) |
Valor_devuelto
Nuevo elemento matemático de tipoIMathSuperscriptElement
Ejemplos
Ejemplo:
[C#]
IMathElement element = new MathematicalText("N");
IMathSuperscriptElement superscript = element.SetSuperscript("4");
Ver también
- interface IMathSuperscriptElement
- interface IMathElement
- espacio de nombres Aspose.Slides.MathText
- asamblea Aspose.Slides