MathematicalText

MathematicalText()

Constructeur par défaut (créer String.Empty Value)

public MathematicalText()

Exemples

Exemple :

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

Voir également


MathematicalText(char)

Créer MathText avec un seul symbole

public MathematicalText(char mathSymbol)
ParamètreTaperLa description
mathSymbolCharsymbole unique

Exemples

Exemple :

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

Voir également


MathematicalText(string)

Créer un texte mathématique à partir de text

public MathematicalText(string mathText)
ParamètreTaperLa description
mathTextStringvaleur de texte

Exemples

Exemple :

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

Voir également


MathematicalText(string, IPortionFormat)

Créer MathematicalText à partir des paramètres de texte et de format

public MathematicalText(string mathText, IPortionFormat portionFormat)
ParamètreTaperLa description
mathTextStringvaleur de texte
portionFormatIPortionFormatparamètres de format de texte

Exemples

Exemple :

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

Voir également