Name

MathFunction.Name property

Function name For example, function names are sin and cos

public IMathElement Name { get; }

Examples

Example:

[C#]
IMathFunction func = new MathematicalText("sin").Function("x");
IMathElement funcName = func.Name;

See Also