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