SetSubSuperscriptOnTheLeft
Contenido
[
Ocultar
]SetSubSuperscriptOnTheLeft(IMathElement, IMathElement)
Crea subíndices y superíndices a la izquierda
public IMathLeftSubSuperscriptElement SetSubSuperscriptOnTheLeft(IMathElement subscript,
IMathElement superscript)
Parámetro | Tipo | Descripción |
---|---|---|
subscript | IMathElement | Subíndice (índice inferior a la izquierda) |
superscript | IMathElement | Superíndice (índice superior a la izquierda) |
Valor de retorno
Nuevo elemento matemático de tipo IMathLeftSubSuperscriptElement
Ejemplos
Ejemplo:
[C#]
IMathElement baseElement = new MathematicalText("N");
IMathElement subscript = new MathematicalText("i");
IMathElement superscript = new MathematicalText("j");
IMathLeftSubSuperscriptElement leftSubsuperscript = baseElement.SetSubSuperscriptOnTheLeft(subscript, superscript);
Ver también
- interfaz IMathLeftSubSuperscriptElement
- interfaz IMathElement
- clase MathElementBase
- espacio de nombres Aspose.Slides.MathText
- ensamblaje Aspose.Slides
SetSubSuperscriptOnTheLeft(string, string)
Crea subíndices y superíndices a la izquierda
public IMathLeftSubSuperscriptElement SetSubSuperscriptOnTheLeft(string subscript,
string superscript)
Parámetro | Tipo | Descripción |
---|---|---|
subscript | String | Subíndice (índice inferior a la izquierda) |
superscript | String | Superíndice (índice superior a la izquierda) |
Valor de retorno
Nuevo elemento matemático de tipo IMathLeftSubSuperscriptElement
Ejemplos
Ejemplo:
[C#]
IMathElement baseElement = new MathematicalText("N");
IMathLeftSubSuperscriptElement leftSubsuperscript = baseElement.SetSubSuperscriptOnTheLeft("i", "j");
Ver también
- interfaz IMathLeftSubSuperscriptElement
- clase MathElementBase
- espacio de nombres Aspose.Slides.MathText
- ensamblaje Aspose.Slides