SetSubSuperscriptOnTheLeft
Inhalt
[
Ausblenden
]SetSubSuperscriptOnTheLeft(IMathElement, IMathElement)
Erstellt Tief- und Hochstellung auf der linken Seite
public IMathLeftSubSuperscriptElement SetSubSuperscriptOnTheLeft(IMathElement subscript,
IMathElement superscript)
Parameter | Typ | Beschreibung |
---|---|---|
subscript | IMathElement | Index (unterer Index links) |
superscript | IMathElement | Hochgestellt (oberer Index links) |
Rückgabewert
Neues mathematisches Element des TypsIMathLeftSubSuperscriptElement
Beispiele
Beispiel:
[C#]
IMathElement baseElement = new MathematicalText("N");
IMathElement subscript = new MathematicalText("i");
IMathElement superscript = new MathematicalText("j");
IMathLeftSubSuperscriptElement leftSubsuperscript = baseElement.SetSubSuperscriptOnTheLeft(subscript, superscript);
Siehe auch
- interface IMathLeftSubSuperscriptElement
- interface IMathElement
- namensraum Aspose.Slides.MathText
- Montage Aspose.Slides
SetSubSuperscriptOnTheLeft(string, string)
Erstellt Tief- und Hochstellung auf der linken Seite
public IMathLeftSubSuperscriptElement SetSubSuperscriptOnTheLeft(string subscript,
string superscript)
Parameter | Typ | Beschreibung |
---|---|---|
subscript | String | Index (unterer Index links) |
superscript | String | Hochgestellt (oberer Index links) |
Rückgabewert
Neues mathematisches Element des TypsIMathLeftSubSuperscriptElement
Beispiele
Beispiel:
[C#]
IMathElement baseElement = new MathematicalText("N");
IMathLeftSubSuperscriptElement leftSubsuperscript = baseElement.SetSubSuperscriptOnTheLeft("i", "j");
Siehe auch
- interface IMathLeftSubSuperscriptElement
- interface IMathElement
- namensraum Aspose.Slides.MathText
- Montage Aspose.Slides