Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Description

Excerpt

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

Signature
C#
C#
 public class ComputationResultFunctionValue
Signature
vb.net
vb.net
Public Class ComputationResultFunctionValue
Example
Code Block
csharp
csharp
titleC#
// Create a computationFunctionValue result for a string
ComputationResultFunctionValue result = new ComputationResultFunctionValue("Hello");        
Code Block
vbnet
vbnet
titlevb.net
' Create a computationFunctionValue result for a string
Dim result as New ComputationResultFunctionValue("Hello")

Properties

Name

Description

Value

Excerpt Include
ComputationResultFunctionValue.ValueComputationResult
FunctionValue.Value
nopaneltrue

Type

Excerpt Include
ComputationResultFunctionValue.TypeComputationResult
FunctionValue.Type
nopaneltrue

Constructors

Name

Description

ComputationResultFunctionValue(string)

Creates a new ComputationResult FunctionValue with the Type set to STRING

ComputationResultFunctionValue(bool)

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