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