HideDegree

IMathRadical.HideDegree property

Hide degree When is true, the degree is not shown, as in √𝑥

public bool HideDegree { get; set; }

Examples

Example:

[C#]
IMathRadical radical = new MathematicalText("x").Radical("3"); // cube root
radical.HideDegree = true;

See Also