MathematicalText

MathematicalText()

Constructor predeterminado (crear String.Valor vacío)

public MathematicalText()

Ejemplos

Ejemplo:

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

Ver también


MathematicalText(char)

Crear MathText con un solo símbolo

public MathematicalText(char mathSymbol)
ParámetroEscribeDescripción
mathSymbolCharsolo símbolo

Ejemplos

Ejemplo:

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

Ver también


MathematicalText(string)

Crear texto matemático a partir de text

public MathematicalText(string mathText)
ParámetroEscribeDescripción
mathTextStringvalor de texto

Ejemplos

Ejemplo:

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

Ver también


MathematicalText(string, IPortionFormat)

Crear MathematicalText a partir de la configuración de texto y formato

public MathematicalText(string mathText, IPortionFormat portionFormat)
ParámetroEscribeDescripción
mathTextStringvalor de texto
portionFormatIPortionFormatconfiguración de formato de texto

Ejemplos

Ejemplo:

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

Ver también