ToBorderBox

ToBorderBox()

Place cet élément dans une bordure

public IMathBorderBox ToBorderBox()

Valeur de retour

Bordure avec cet élément placé à l’intérieur

Exemples

Exemple :

[C#]
IMathBorderBox borderBox = new MathematicalText("x+y+z").ToBorderBox();

Voir aussi


ToBorderBox(bool, bool, bool, bool, bool, bool, bool, bool)

Place cet élément dans une bordure

public IMathBorderBox ToBorderBox(bool hideTop, bool hideBottom, bool hideLeft, bool hideRight, 
    bool strikethroughHorizontal, bool strikethroughVertical, 
    bool strikethroughBottomLeftToTopRight, bool strikethroughTopLeftToBottomRight)
ParamètreTypeDescription
hideTopBooleanCacher le bord supérieur
hideBottomBooleanCacher le bord inférieur
hideLeftBooleanCacher le bord gauche
hideRightBooleanCacher le bord droit
strikethroughHorizontalBooleanBarrer horizontalement la bordure
strikethroughVerticalBooleanBarrer verticalement la bordure
strikethroughBottomLeftToTopRightBooleanBarrer de bas-gauche à haut-droit
strikethroughTopLeftToBottomRightBooleanBarrer de haut-gauche à bas-droit

Valeur de retour

Bordure avec cet élément placé à l’intérieur

Exemples

Exemple :

[C#]
IMathBorderBox borderBox = new MathematicalText("x+y+z").ToBorderBox(false, false, true, true, false, false, false, false);

Voir aussi