MathematicalText

MathematicalText()

Standardkonstruktor (String.Empty Value erstellen)

public MathematicalText()

Beispiele

Beispiel:

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

Siehe auch


MathematicalText(char)

MathText mit einzelnem Symbol erstellen

public MathematicalText(char mathSymbol)
ParameterTypBeschreibung
mathSymbolChareinzelnes Symbol

Beispiele

Beispiel:

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

Siehe auch


MathematicalText(string)

Mathematischen Text aus text erstellen

public MathematicalText(string mathText)
ParameterTypBeschreibung
mathTextStringTextwert

Beispiele

Beispiel:

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

Siehe auch


MathematicalText(string, IPortionFormat)

MathematicalText aus Text erstellen und formatieren settings

public MathematicalText(string mathText, IPortionFormat portionFormat)
ParameterTypBeschreibung
mathTextStringTextwert
portionFormatIPortionFormatTextformateinstellungen

Beispiele

Beispiel:

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

Siehe auch