SetSubscript
Contenido
[
Ocultar
]SetSubscript(IMathElement)
Crea subíndice
public IMathSubscriptElement SetSubscript(IMathElement subscript)
Parámetro | Escribe | Descripción |
---|---|---|
subscript | IMathElement | Subíndice (índice inferior a la derecha) |
Valor_devuelto
Nuevo elemento matemático de tipoIMathSubscriptElement
Ejemplos
Ejemplo:
[C#]
IMathElement element = new MathematicalText("N");
IMathElement index = new MathematicalText("i");
IMathSubscriptElement subscript = element.SetSubscript(index);
Ver también
- interface IMathSubscriptElement
- interface IMathElement
- espacio de nombres Aspose.Slides.MathText
- asamblea Aspose.Slides
SetSubscript(string)
Crea subíndice
public IMathSubscriptElement SetSubscript(string subscript)
Parámetro | Escribe | Descripción |
---|---|---|
subscript | String | Subíndice (índice inferior a la derecha) |
Valor_devuelto
Nuevo elemento matemático de tipoIMathSubscriptElement
Ejemplos
Ejemplo:
[C#]
IMathElement element = new MathematicalText("N");
IMathSubscriptElement subscript = element.SetSubscript("i");
Ver también
- interface IMathSubscriptElement
- interface IMathElement
- espacio de nombres Aspose.Slides.MathText
- asamblea Aspose.Slides