MathElementBaseAsArgumentOfFunction Method (MathFunctionsOfOneArgument) |
Takes specified function using this instance as the argument
Namespace:
Aspose.Slides.MathText
Assembly:
Aspose.Slides (in Aspose.Slides.dll) Version: 20.12.0.0 (20.12)
Syntaxpublic IMathFunction AsArgumentOfFunction(
MathFunctionsOfOneArgument functionType
)
Public Function AsArgumentOfFunction (
functionType As MathFunctionsOfOneArgument
) As IMathFunction
public:
virtual IMathFunction^ AsArgumentOfFunction(
MathFunctionsOfOneArgument functionType
) sealed
abstract AsArgumentOfFunction :
functionType : MathFunctionsOfOneArgument -> IMathFunction
override AsArgumentOfFunction :
functionType : MathFunctionsOfOneArgument -> IMathFunction
Parameters
- functionType
- Type: Aspose.Slides.MathTextMathFunctionsOfOneArgument
One of the common function type of one argument
Return Value
Type:
IMathFunctionNew math element of type
IMathFunctionImplements
IMathElementAsArgumentOfFunction(MathFunctionsOfOneArgument)
ExamplesExample:
[C#]
IMathElement functionName = new MathematicalText("sin");
IMathElement functionArg = new MathematicalText("x");
IMathFunction func = functionArg.AsArgumentOfFunction(functionName);
See Also