IMathFunction

All Implemented Interfaces: com.aspose.slides.IMathElement

public interface IMathFunction extends IMathElement

Specifies a function of an argument.


Example:
 
 IMathFunction sinX = new MathematicalText("sin").function("x");

Methods

MethodDescription
getName()Function name For example, function names are sin and cos
getBase()Function Argument

getName()

public abstract IMathElement getName()

Function name For example, function names are sin and cos


Example:
 
 IMathFunction func = new MathematicalText("sin").function("x");
 IMathElement funcName = func.getName();

Returns: IMathElement

getBase()

public abstract IMathElement getBase()

Function Argument


Example:
 
 IMathFunction func = new MathematicalText("sin").function("x");
 IMathElement base = func.getBase();

Returns: IMathElement