SetSubSuperscriptOnTheLeft
Contents
[
Hide
]SetSubSuperscriptOnTheLeft(IMathElement, IMathElement)
Creates subscript and superscript on the left
public IMathLeftSubSuperscriptElement SetSubSuperscriptOnTheLeft(IMathElement subscript,
IMathElement superscript)
Parameter | Type | Description |
---|---|---|
subscript | IMathElement | Subscript (lower index on the left) |
superscript | IMathElement | Superscript (upper index on the left) |
Return Value
New math element of type IMathLeftSubSuperscriptElement
Examples
Example:
[C#]
IMathElement baseElement = new MathematicalText("N");
IMathElement subscript = new MathematicalText("i");
IMathElement superscript = new MathematicalText("j");
IMathLeftSubSuperscriptElement leftSubsuperscript = baseElement.SetSubSuperscriptOnTheLeft(subscript, superscript);
See Also
- interface IMathLeftSubSuperscriptElement
- interface IMathElement
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides
SetSubSuperscriptOnTheLeft(string, string)
Creates subscript and superscript on the left
public IMathLeftSubSuperscriptElement SetSubSuperscriptOnTheLeft(string subscript,
string superscript)
Parameter | Type | Description |
---|---|---|
subscript | String | Subscript (lower index on the left) |
superscript | String | Superscript (upper index on the left) |
Return Value
New math element of type IMathLeftSubSuperscriptElement
Examples
Example:
[C#]
IMathElement baseElement = new MathematicalText("N");
IMathLeftSubSuperscriptElement leftSubsuperscript = baseElement.SetSubSuperscriptOnTheLeft("i", "j");
See Also
- interface IMathLeftSubSuperscriptElement
- interface IMathElement
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides