MathElementBaseSetSubSuperscriptOnTheRight Method (String, String) |
Creates subscript and superscript on the right
Namespace:
Aspose.Slides.MathText
Assembly:
Aspose.Slides (in Aspose.Slides.dll) Version: 20.12.0.0 (20.12)
Syntaxpublic IMathRightSubSuperscriptElement SetSubSuperscriptOnTheRight(
string subscript,
string superscript
)
Public Function SetSubSuperscriptOnTheRight (
subscript As String,
superscript As String
) As IMathRightSubSuperscriptElement
public:
virtual IMathRightSubSuperscriptElement^ SetSubSuperscriptOnTheRight(
String^ subscript,
String^ superscript
) sealed
abstract SetSubSuperscriptOnTheRight :
subscript : string *
superscript : string -> IMathRightSubSuperscriptElement
override SetSubSuperscriptOnTheRight :
subscript : string *
superscript : string -> IMathRightSubSuperscriptElement
Parameters
- subscript
- Type: SystemString
Subscript (lower index on the right) - superscript
- Type: SystemString
Superscript (upper index on the right)
Return Value
Type:
IMathRightSubSuperscriptElementNew math element of type
IMathRightSubSuperscriptElementImplements
IMathElementSetSubSuperscriptOnTheRight(String, String)
ExamplesExample:
[C#]
IMathElement baseElement = new MathematicalText("N");
IMathRightSubSuperscriptElement subsuperscript = baseElement.SetSubSuperscriptOnTheRight("i", "j");
See Also