Radical

Radical(IMathElement)

Specifies the mathematical root of the given degree from the specified argument.

public IMathRadical Radical(IMathElement degree)
ParameterTypeDescription
degreeIMathElementArgument of Radical

Return Value

New instance of type IMathRadical

Examples

Example:

[C#]
IMathElement baseElement = new MathematicalText("2px");
IMathElement degree = new MathematicalText("y");
var radical = baseElement.Radical(degree);

See Also


Radical(string)

Specifies the mathematical root of the given degree from the specified argument.

public IMathRadical Radical(string degree)
ParameterTypeDescription
degreeStringArgument of Radical

Return Value

New instance of type IMathRadical

Examples

Example:

[C#]
IMathElement baseElement = new MathematicalText("2px");
var radical = baseElement.Radical("3");

See Also