SetSubSuperscriptOnTheRight
Содержание
[
Скрывать
]SetSubSuperscriptOnTheRight(IMathElement, IMathElement)
Создает подстрочный и надстрочный текст справа
public IMathRightSubSuperscriptElement SetSubSuperscriptOnTheRight(IMathElement subscript,
IMathElement superscript)
Параметр | Тип | Описание |
---|---|---|
subscript | IMathElement | Подстрочный текст (нижний индекс справа) |
superscript | IMathElement | Надстрочный текст (верхний индекс справа) |
Возвращаемое значение
Новый математический элемент типа IMathRightSubSuperscriptElement
Примеры
Пример:
[C#]
IMathElement baseElement = new MathematicalText("N");
IMathElement subscript = new MathematicalText("i");
IMathElement superscript = new MathematicalText("j");
IMathRightSubSuperscriptElement subsuperscript = baseElement.SetSubSuperscriptOnTheRight(subscript, superscript);
См. также
- интерфейс IMathRightSubSuperscriptElement
- интерфейс IMathElement
- пространство имен Aspose.Slides.MathText
- сборка Aspose.Slides
SetSubSuperscriptOnTheRight(string, string)
Создает подстрочный и надстрочный текст справа
public IMathRightSubSuperscriptElement SetSubSuperscriptOnTheRight(string subscript,
string superscript)
Параметр | Тип | Описание |
---|---|---|
subscript | String | Подстрочный текст (нижний индекс справа) |
superscript | String | Надстрочный текст (верхний индекс справа) |
Возвращаемое значение
Новый математический элемент типа IMathRightSubSuperscriptElement
Примеры
Пример:
[C#]
IMathElement baseElement = new MathematicalText("N");
IMathRightSubSuperscriptElement subsuperscript = baseElement.SetSubSuperscriptOnTheRight("i", "j");
См. также
- интерфейс IMathRightSubSuperscriptElement
- интерфейс IMathElement
- пространство имен Aspose.Slides.MathText
- сборка Aspose.Slides