AsArgumentOfFunction
Contenu
[
Cacher
]AsArgumentOfFunction(IMathElement)
Prend la fonction spécifiée en utilisant cette instance comme argument
public IMathFunction AsArgumentOfFunction(IMathElement functionName)
Paramètre | Taper | La description |
---|---|---|
functionName | IMathElement | Nom 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 = functionArg.AsArgumentOfFunction(functionName);
Voir également
- interface IMathFunction
- interface IMathElement
- class MathElementBase
- espace de noms Aspose.Slides.MathText
- Assemblée Aspose.Slides
AsArgumentOfFunction(string)
Prend la fonction spécifiée en utilisant cette instance comme argument
public IMathFunction AsArgumentOfFunction(string functionName)
Paramètre | Taper | La description |
---|---|---|
functionName | String | Nom de la fonction |
Return_Value
Nouvel élément mathématique de typeIMathFunction
Exemples
Exemple :
[C#]
IMathElement functionArg = new MathematicalText("x");
IMathFunction func = functionArg.AsArgumentOfFunction("cos");
Voir également
- interface IMathFunction
- class MathElementBase
- espace de noms Aspose.Slides.MathText
- Assemblée Aspose.Slides
AsArgumentOfFunction(MathFunctionsOfOneArgument)
Prend la fonction spécifiée en utilisant cette instance comme argument
public IMathFunction AsArgumentOfFunction(MathFunctionsOfOneArgument functionType)
Paramètre | Taper | La description |
---|---|---|
functionType | MathFunctionsOfOneArgument | L’un des types de fonction communs d’un argument |
Return_Value
Nouvel élément mathématique de typeIMathFunction
Exemples
Exemple :
[C#]
IMathElement functionName = new MathematicalText("sin");
IMathElement functionArg = new MathematicalText("x");
IMathFunction func = functionArg.AsArgumentOfFunction(functionName);
Voir également
- interface IMathFunction
- enum MathFunctionsOfOneArgument
- class MathElementBase
- espace de noms Aspose.Slides.MathText
- Assemblée Aspose.Slides
AsArgumentOfFunction(MathFunctionsOfTwoArguments, IMathElement)
Prend la fonction spécifiée en utilisant cette instance comme argument et un argument supplémentaire spécifié
public IMathFunction AsArgumentOfFunction(MathFunctionsOfTwoArguments functionType,
IMathElement additionalArgument)
Paramètre | Taper | La description |
---|---|---|
functionType | MathFunctionsOfTwoArguments | L’un des types de fonction communs à deux arguments : Log, Lim, Min, Max |
additionalArgument | IMathElement | Argument supplémentaire selon le type de fonction |
Return_Value
Nouvel élément mathématique de typeIMathFunction
Exemples
Exemple :
[C#]
IMathElement functionArg = new MathematicalText("x");
IMathElement logarithmBase = new MathematicalText("5");
IMathFunction func = functionArg.AsArgumentOfFunction(MathFunctionsOfTwoArguments.Log, logarithmBase); // Renvoie le logarithme de 'x' en base '5'
Voir également
- interface IMathFunction
- enum MathFunctionsOfTwoArguments
- interface IMathElement
- class MathElementBase
- espace de noms Aspose.Slides.MathText
- Assemblée Aspose.Slides
AsArgumentOfFunction(MathFunctionsOfTwoArguments, string)
Prend la fonction spécifiée en utilisant cette instance comme argument et un argument supplémentaire spécifié
public IMathFunction AsArgumentOfFunction(MathFunctionsOfTwoArguments functionType,
string additionalArgument)
Paramètre | Taper | La description |
---|---|---|
functionType | MathFunctionsOfTwoArguments | L’un des types de fonction communs à deux arguments : Log, Lim, Min, Max |
additionalArgument | String | Argument supplémentaire selon le type de fonction |
Return_Value
Nouvel élément mathématique de typeIMathFunction
Exemples
Exemple :
[C#]
IMathElement functionArg = new MathematicalText("x");
IMathFunction func = functionArg.AsArgumentOfFunction(MathFunctionsOfTwoArguments.Log, "5"); // Renvoie le logarithme de 'x' en base '5'
Voir également
- interface IMathFunction
- enum MathFunctionsOfTwoArguments
- class MathElementBase
- espace de noms Aspose.Slides.MathText
- Assemblée Aspose.Slides