SetSubSuperscriptOnTheLeft
Contenido
[
Ocultar
]SetSubSuperscriptOnTheLeft(IMathElement, IMathElement)
Crea subíndice y superíndice a la izquierda
public IMathLeftSubSuperscriptElement SetSubSuperscriptOnTheLeft(IMathElement subscript,
IMathElement superscript)
Parámetro | Escribe | Descripción |
---|---|---|
subscript | IMathElement | Subíndice (índice inferior a la izquierda) |
superscript | IMathElement | Superíndice (índice superior a la izquierda) |
Valor_devuelto
Nuevo elemento matemático de tipoIMathLeftSubSuperscriptElement
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
- interface IMathLeftSubSuperscriptElement
- interface IMathElement
- class MathElementBase
- espacio de nombres Aspose.Slides.MathText
- asamblea Aspose.Slides
SetSubSuperscriptOnTheLeft(string, string)
Crea subíndice y superíndice a la izquierda
public IMathLeftSubSuperscriptElement SetSubSuperscriptOnTheLeft(string subscript,
string superscript)
Parámetro | Escribe | Descripción |
---|---|---|
subscript | String | Subíndice (índice inferior a la izquierda) |
superscript | String | Superíndice (índice superior a la izquierda) |
Valor_devuelto
Nuevo elemento matemático de tipoIMathLeftSubSuperscriptElement
Ejemplos
Ejemplo:
[C#]
IMathElement baseElement = new MathematicalText("N");
IMathLeftSubSuperscriptElement leftSubsuperscript = baseElement.SetSubSuperscriptOnTheLeft("i", "j");
Ver también
- interface IMathLeftSubSuperscriptElement
- class MathElementBase
- espacio de nombres Aspose.Slides.MathText
- asamblea Aspose.Slides