Radical
Contents
[
Hide
]Radical(IMathElement)
Specifies the mathematical root of the given degree from the specified argument.
public IMathRadical Radical(IMathElement degree)
Parameter | Type | Description |
---|---|---|
degree | IMathElement | Argument 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
- interface IMathRadical
- interface IMathElement
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides
Radical(string)
Specifies the mathematical root of the given degree from the specified argument.
public IMathRadical Radical(string degree)
Parameter | Type | Description |
---|---|---|
degree | String | Argument of Radical |
Return Value
New instance of type IMathRadical
Examples
Example:
[C#]
IMathElement baseElement = new MathematicalText("2px");
var radical = baseElement.Radical("3");
See Also
- interface IMathRadical
- interface IMathElement
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides