MathElementBaseRadical Method (String) |
Specifies the mathematical root of the given degree from the specified argument.
Namespace:
Aspose.Slides.MathText
Assembly:
Aspose.Slides (in Aspose.Slides.dll) Version: 20.12.0.0 (20.12)
Syntaxpublic IMathRadical Radical(
string degree
)
Public Function Radical (
degree As String
) As IMathRadical
public:
virtual IMathRadical^ Radical(
String^ degree
) sealed
abstract Radical :
degree : string -> IMathRadical
override Radical :
degree : string -> IMathRadical
Parameters
- degree
- Type: SystemString
Argument of Radical
Return Value
Type:
IMathRadicalNew instance of type
IMathRadicalImplements
IMathElementRadical(String)
ExamplesExample:
[C#]
IMathElement baseElement = new MathematicalText("2px");
var radical = baseElement.Radical("3");
See Also