Join

Join(IMathElement)

Une un elemento matemático con este bloque matemático

public override IMathBlock Join(IMathElement mathElement)
ParámetroEscribeDescripción
mathElementIMathElementEl elemento a unir

Valor_devuelto

La instancia actual de IMathBlock

Ejemplos

Ejemplo:

[C#]
IMathElement element1 = new MathematicalText("x");
IMathElement element2 = new MathematicalText("y");
IMathBlock block = element1.Join(element2);

Ver también


Join(string)

Une un texto matemático con este bloque matemático

public override IMathBlock Join(string mathText)
ParámetroEscribeDescripción
mathTextStringTexto matemático a unir

Valor_devuelto

Un nuevo IMathBlock que contiene esta instancia y el argumento especificado

Ejemplos

Ejemplo:

[C#]
IMathElement element = new MathematicalText("x");
IMathBlock block = element.Join("+y");

Ver también