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

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

Name

Description

Value

Type

Name

Description

ComputationResult(string)

Creates a new ComputationResult with the Type set to STRING

ComputationResult(bool)

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