SetSubSuperscriptOnTheLeft

SetSubSuperscriptOnTheLeft(IMathElement, IMathElement)

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

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

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

Новый математический элемент типа 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Подстрочный текст (нижний индекс слева)
superscriptStringНадстрочный текст (верхний индекс слева)

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

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

Примеры

Пример:

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

См. также