Function
Contenu
[
Cacher
]Function(IMathElement)
Prend une fonction d’un argument en utilisant cette instance comme nom de la fonction
public IMathFunction Function(IMathElement functionArgument)
Paramètre | Type | Description |
---|---|---|
functionArgument | IMathElement | Un argument de la fonction |
Valeur de Retour
Nouvel élément mathématique de type IMathFunction
Exemples
Exemple:
[C#]
IMathElement functionName = new MathematicalText("sin");
IMathElement functionArg = new MathematicalText("x");
IMathFunction func = functionName.Function(functionArg);
Voir Également
- interface IMathFunction
- interface IMathElement
- class MathElementBase
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides
Function(string)
Prend une fonction d’un argument en utilisant cette instance comme nom de la fonction
public IMathFunction Function(string functionArgument)
Paramètre | Type | Description |
---|---|---|
functionArgument | String | Un argument de la fonction |
Valeur de Retour
Nouvel élément mathématique de type IMathFunction
Exemples
Exemple:
[C#]
IMathElement functionName = new MathematicalText("sin");
IMathFunction func = functionName.Function("x");
Voir Également
- interface IMathFunction
- class MathElementBase
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides