IMathFunction

IMathFunction interface

Specifies a function of an argument.

public interface IMathFunction : IMathElement

Properties

NameDescription
AsIMathElement { get; }Allows to get base IMathElement interface IMathElement
Base { get; }Function Argument
Name { get; }Function name For example, function names are sin and cos

Examples

Example:

[C#]
IMathFunction sinX = new MathematicalText("sin").Function("x");

See Also