SetSubscript

SetSubscript(IMathElement)

Erstellt Subskript

public IMathSubscriptElement SetSubscript(IMathElement subscript)
ParameterTypBeschreibung
subscriptIMathElementSubskript (unterer Index rechts)

Rückgabewert

Neues mathematisches Element vom Typ IMathSubscriptElement

Beispiele

Beispiel:

[C#]
IMathElement element = new MathematicalText("N");
IMathElement index = new MathematicalText("i");
IMathSubscriptElement subscript = element.SetSubscript(index);

Siehe auch


SetSubscript(string)

Erstellt Subskript

public IMathSubscriptElement SetSubscript(string subscript)
ParameterTypBeschreibung
subscriptStringSubskript (unterer Index rechts)

Rückgabewert

Neues mathematisches Element vom Typ IMathSubscriptElement

Beispiele

Beispiel:

[C#]
IMathElement element = new MathematicalText("N");
IMathSubscriptElement subscript = element.SetSubscript("i");

Siehe auch