Function
Contenu
[
Cacher
]Function(IMathElement)
Prend une fonction d’un argument en utilisant cette instance comme fonction name
public IMathFunction Function(IMathElement functionArgument)
Paramètre | Taper | La description |
---|---|---|
functionArgument | IMathElement | Un argument de la fonction |
Return_Value
Nouvel élément mathématique de typeIMathFunction
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
- espace de noms Aspose.Slides.MathText
- Assemblée Aspose.Slides
Function(string)
Prend une fonction d’un argument en utilisant cette instance comme fonction name
public IMathFunction Function(string functionArgument)
Paramètre | Taper | La description |
---|---|---|
functionArgument | String | Un argument de la fonction |
Return_Value
Nouvel élément mathématique de typeIMathFunction
Exemples
Exemple :
[C#]
IMathElement functionName = new MathematicalText("sin");
IMathFunction func = functionName.Function("x");
Voir également
- interface IMathFunction
- class MathElementBase
- espace de noms Aspose.Slides.MathText
- Assemblée Aspose.Slides