SetSubSuperscriptOnTheLeft

SetSubSuperscriptOnTheLeft(IMathElement, IMathElement)

Создает нижний и верхний индексы слева

public IMathLeftSubSuperscriptElement SetSubSuperscriptOnTheLeft(IMathElement subscript, 
    IMathElement superscript)
ПараметрТипОписание
subscriptIMathElementНижний индекс (нижний индекс слева)
верхнийиндексIMathElementВерхний индекс (верхний индекс слева)

Возвращаемое значение

Новый математический элемент типаIMathLeftSubSuperscriptElement

Примеры

Пример:

[C#]
IMathElement baseElement = new MathematicalText("N");
IMathElement subscript = new MathematicalText("i");
IMathElement superscript = new MathematicalText("j");
IMathLeftSubSuperscriptElement leftSubsuperscript = baseElement.SetSubSuperscriptOnTheLeft(subscript, superscript);

Смотрите также


SetSubSuperscriptOnTheLeft(string, string)

Создает нижний и верхний индексы слева

public IMathLeftSubSuperscriptElement SetSubSuperscriptOnTheLeft(string subscript, 
    string superscript)
ПараметрТипОписание
subscriptStringНижний индекс (нижний индекс слева)
верхнийиндексStringВерхний индекс (верхний индекс слева)

Возвращаемое значение

Новый математический элемент типаIMathLeftSubSuperscriptElement

Примеры

Пример:

[C#]
IMathElement baseElement = new MathematicalText("N");
IMathLeftSubSuperscriptElement leftSubsuperscript = baseElement.SetSubSuperscriptOnTheLeft("i", "j");

Смотрите также