MathematicalText

MathematicalText()

Конструктор по умолчанию (создать String.Empty Value)

public MathematicalText()

Примеры

Пример:

[C#]
MathematicalText mathText = new MathematicalText();

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


MathematicalText(char)

Создать MathText с одиночным символом

public MathematicalText(char mathSymbol)
ПараметрТипОписание
mathSymbolCharодиночный символ

Примеры

Пример:

[C#]
MathematicalText mathText = new MathematicalText('$');

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


MathematicalText(string)

Создать MathematicalText из текста

public MathematicalText(string mathText)
ПараметрТипОписание
mathTextStringтекстовое значение

Примеры

Пример:

[C#]
MathematicalText mathText = new MathematicalText("x+y");

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


MathematicalText(string, IPortionFormat)

Создать MathematicalText из текста и настроек формата

public MathematicalText(string mathText, IPortionFormat portionFormat)
ПараметрТипОписание
mathTextStringtext value
partionFormatIPortionFormatнастройки формата текста

Примеры

Пример:

[C#]
IPortionFormat format = new PortionFormat() { FontHeight = 12 };
MathematicalText mathText = new MathematicalText("x+y", format);

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