MathBar

MathBar(IMathElement)

Initialisiert MathBar mit Overbar (Oberste Position)

public MathBar(IMathElement element)
ParameterTypBeschreibung
elementIMathElementDas Basiselement, auf das die Stange angewendet wird

Beispiele

Beispiel:

[C#]
MathBar mathBar = new MathBar(new MathematicalText("x"));

Siehe auch


MathBar(IMathElement, MathTopBotPositions)

Initialisiert MathBar mit angegebener Position

public MathBar(IMathElement element, MathTopBotPositions position)
ParameterTypBeschreibung
elementIMathElementDas Basiselement, auf das die Stange angewendet wird
positionMathTopBotPositionsPosition des Taktstrichs.

Beispiele

Beispiel:

[C#]
MathBar mathBar = new MathBar(new MathematicalText("x"), MathTopBotPositions.Bottom);

Siehe auch