Function
Contents
[
Hide
]Function(IMathElement)
Takes a function of an argument using this instance as the function name
public IMathFunction Function(IMathElement functionArgument)
Parameter | Type | Description |
---|---|---|
functionArgument | IMathElement | An argument of the function |
Return Value
New math element of type IMathFunction
Examples
Example:
[C#]
IMathElement functionName = new MathematicalText("sin");
IMathElement functionArg = new MathematicalText("x");
IMathFunction func = functionName.Function(functionArg);
See Also
- interface IMathFunction
- interface IMathElement
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides
Function(string)
Takes a function of an argument using this instance as the function name
public IMathFunction Function(string functionArgument)
Parameter | Type | Description |
---|---|---|
functionArgument | String | An argument of the function |
Return Value
New math element of type IMathFunction
Examples
Example:
[C#]
IMathElement functionName = new MathematicalText("sin");
IMathFunction func = functionName.Function("x");
See Also
- interface IMathFunction
- interface IMathElement
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides