MathBorderBox

MathBorderBox(IMathElement)

Crea un elemento MathBorderBox con borde rectangular

public MathBorderBox(IMathElement element)
ParámetroTipoDescripción
elementIMathElementEl elemento base al que se aplica la caja de borde. Puede ser nulo.

Ejemplos

Ejemplo:

[C#]
MathBorderBox borderBox = new MathBorderBox(new MathematicalText("x"));

Ver También


MathBorderBox(IMathElement, bool, bool, bool, bool, bool, bool, bool, bool)

Crea un elemento MathBorderBox

public MathBorderBox(IMathElement element, bool hideTop, bool hideBottom, bool hideLeft, 
    bool hideRight, bool strikethroughHorizontal, bool strikethroughVertical, 
    bool strikethroughBottomLeftToTopRight, bool strikethroughTopLeftToBottomRight)
ParámetroTipoDescripción
elementIMathElementEl elemento base al que se aplica la caja de borde
hideTopBooleanOcultar Borde Superior
hideBottomBooleanOcultar Borde Inferior
hideLeftBooleanOcultar Borde Izquierdo
hideRightBooleanOcultar Borde Derecho
strikethroughHorizontalBooleanTachar Horizontal
strikethroughVerticalBooleanTachar Vertical
strikethroughBottomLeftToTopRightBooleanTachar de Inferior Izquierdo a Superior Derecho
strikethroughTopLeftToBottomRightBooleanTachar de Superior Izquierdo a Inferior Derecho

Ejemplos

Ejemplo:

[C#]
MathBorderBox borderBox = new MathBorderBox(new MathematicalText("x"), true, true, true, false, true, true, true, true)

Ver También