The FunctionValue class is used to pass arguments in and get results from custom functions.

 public class FunctionValue
Public Class FunctionValue
// Create a FunctionValue for a string
FunctionValue result = new FunctionValue("Hello");        
' Create a FunctionValue for a string
Dim result as New FunctionValue("Hello")

Name

Description

Value

Type

Name

Description

FunctionValue(string)

Creates a new FunctionValue with the Type set to STRING

FunctionValue(bool)

Creates a new FunctionValue with the Type set to BOOLEAN
FunctionValue(double)Creates a new FunctionValue with the Type set to NUMBER
FunctionValue(Range)Creates a new FunctionValue with the Type set to RANGE