MathBorderBox

MathBorderBox(IMathElement)

Crée un élément MathBorderBox avec une bordure rectangulaire

public MathBorderBox(IMathElement element)
ParamètreTaperLa description
elementIMathElementL’élément de base auquel la zone de bordure est appliquée. Peut être nul.

Exemples

Exemple :

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

Voir également


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

Crée un élément MathBorderBox

public MathBorderBox(IMathElement element, bool hideTop, bool hideBottom, bool hideLeft, 
    bool hideRight, bool strikethroughHorizontal, bool strikethroughVertical, 
    bool strikethroughBottomLeftToTopRight, bool strikethroughTopLeftToBottomRight)
ParamètreTaperLa description
elementIMathElementL’élément de base auquel la zone de bordure est appliquée
hideTopBooleanMasquer le bord supérieur
hideBottomBooleanMasquer le bord inférieur
hideLeftBooleanMasquer le bord gauche
hideRightBooleanMasquer le bord droit
strikethroughHorizontalBooleanHorizontal barré
strikethroughVerticalBooleanBarre verticale
strikethroughBottomLeftToTopRightBooleanBarré de bas à gauche en haut à droite
strikethroughTopLeftToBottomRightBooleanBarré de haut à gauche en bas à droite

Exemples

Exemple :

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

Voir également